| Copyright | (c) 2013-2023 Brendan Hay |
|---|---|
| License | Mozilla Public License, v. 2.0. |
| Maintainer | Brendan Hay |
| Stability | auto-generated |
| Portability | non-portable (GHC extensions) |
| Safe Haskell | Safe-Inferred |
| Language | Haskell2010 |
Amazonka.Lambda.ListProvisionedConcurrencyConfigs
Description
Retrieves a list of provisioned concurrency configurations for a function.
This operation returns paginated results.
Synopsis
- data ListProvisionedConcurrencyConfigs = ListProvisionedConcurrencyConfigs' {}
- newListProvisionedConcurrencyConfigs :: Text -> ListProvisionedConcurrencyConfigs
- listProvisionedConcurrencyConfigs_marker :: Lens' ListProvisionedConcurrencyConfigs (Maybe Text)
- listProvisionedConcurrencyConfigs_maxItems :: Lens' ListProvisionedConcurrencyConfigs (Maybe Natural)
- listProvisionedConcurrencyConfigs_functionName :: Lens' ListProvisionedConcurrencyConfigs Text
- data ListProvisionedConcurrencyConfigsResponse = ListProvisionedConcurrencyConfigsResponse' {}
- newListProvisionedConcurrencyConfigsResponse :: Int -> ListProvisionedConcurrencyConfigsResponse
- listProvisionedConcurrencyConfigsResponse_nextMarker :: Lens' ListProvisionedConcurrencyConfigsResponse (Maybe Text)
- listProvisionedConcurrencyConfigsResponse_provisionedConcurrencyConfigs :: Lens' ListProvisionedConcurrencyConfigsResponse (Maybe [ProvisionedConcurrencyConfigListItem])
- listProvisionedConcurrencyConfigsResponse_httpStatus :: Lens' ListProvisionedConcurrencyConfigsResponse Int
Creating a Request
data ListProvisionedConcurrencyConfigs Source #
See: newListProvisionedConcurrencyConfigs smart constructor.
Constructors
| ListProvisionedConcurrencyConfigs' | |
Fields
| |
Instances
newListProvisionedConcurrencyConfigs Source #
Create a value of ListProvisionedConcurrencyConfigs with all optional fields omitted.
Use generic-lens or optics to modify other optional fields.
The following record fields are available, with the corresponding lenses provided for backwards compatibility:
$sel:marker:ListProvisionedConcurrencyConfigs', listProvisionedConcurrencyConfigs_marker - Specify the pagination token that's returned by a previous request to
retrieve the next page of results.
$sel:maxItems:ListProvisionedConcurrencyConfigs', listProvisionedConcurrencyConfigs_maxItems - Specify a number to limit the number of configurations returned.
ListProvisionedConcurrencyConfigs, listProvisionedConcurrencyConfigs_functionName - The name of the Lambda function.
Name formats
- Function name –
my-function. - Function ARN –
arn:aws:lambda:us-west-2:123456789012:function:my-function. - Partial ARN –
123456789012:function:my-function.
The length constraint applies only to the full ARN. If you specify only the function name, it is limited to 64 characters in length.
Request Lenses
listProvisionedConcurrencyConfigs_marker :: Lens' ListProvisionedConcurrencyConfigs (Maybe Text) Source #
Specify the pagination token that's returned by a previous request to retrieve the next page of results.
listProvisionedConcurrencyConfigs_maxItems :: Lens' ListProvisionedConcurrencyConfigs (Maybe Natural) Source #
Specify a number to limit the number of configurations returned.
listProvisionedConcurrencyConfigs_functionName :: Lens' ListProvisionedConcurrencyConfigs Text Source #
The name of the Lambda function.
Name formats
- Function name –
my-function. - Function ARN –
arn:aws:lambda:us-west-2:123456789012:function:my-function. - Partial ARN –
123456789012:function:my-function.
The length constraint applies only to the full ARN. If you specify only the function name, it is limited to 64 characters in length.
Destructuring the Response
data ListProvisionedConcurrencyConfigsResponse Source #
See: newListProvisionedConcurrencyConfigsResponse smart constructor.
Constructors
| ListProvisionedConcurrencyConfigsResponse' | |
Fields
| |
Instances
newListProvisionedConcurrencyConfigsResponse Source #
Arguments
| :: Int | |
| -> ListProvisionedConcurrencyConfigsResponse |
Create a value of ListProvisionedConcurrencyConfigsResponse with all optional fields omitted.
Use generic-lens or optics to modify other optional fields.
The following record fields are available, with the corresponding lenses provided for backwards compatibility:
$sel:nextMarker:ListProvisionedConcurrencyConfigsResponse', listProvisionedConcurrencyConfigsResponse_nextMarker - The pagination token that's included if more results are available.
$sel:provisionedConcurrencyConfigs:ListProvisionedConcurrencyConfigsResponse', listProvisionedConcurrencyConfigsResponse_provisionedConcurrencyConfigs - A list of provisioned concurrency configurations.
$sel:httpStatus:ListProvisionedConcurrencyConfigsResponse', listProvisionedConcurrencyConfigsResponse_httpStatus - The response's http status code.
Response Lenses
listProvisionedConcurrencyConfigsResponse_nextMarker :: Lens' ListProvisionedConcurrencyConfigsResponse (Maybe Text) Source #
The pagination token that's included if more results are available.
listProvisionedConcurrencyConfigsResponse_provisionedConcurrencyConfigs :: Lens' ListProvisionedConcurrencyConfigsResponse (Maybe [ProvisionedConcurrencyConfigListItem]) Source #
A list of provisioned concurrency configurations.
listProvisionedConcurrencyConfigsResponse_httpStatus :: Lens' ListProvisionedConcurrencyConfigsResponse Int Source #
The response's http status code.