Copyright | (c) 2013-2021 Brendan Hay |
---|---|
License | Mozilla Public License, v. 2.0. |
Maintainer | Brendan Hay <brendan.g.hay+amazonka@gmail.com> |
Stability | auto-generated |
Portability | non-portable (GHC extensions) |
Safe Haskell | None |
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_provisionedConcurrencyConfigs :: Lens' ListProvisionedConcurrencyConfigsResponse (Maybe [ProvisionedConcurrencyConfigListItem])
- listProvisionedConcurrencyConfigsResponse_nextMarker :: Lens' ListProvisionedConcurrencyConfigsResponse (Maybe Text)
- listProvisionedConcurrencyConfigsResponse_httpStatus :: Lens' ListProvisionedConcurrencyConfigsResponse Int
Creating a Request
data ListProvisionedConcurrencyConfigs Source #
See: newListProvisionedConcurrencyConfigs
smart constructor.
ListProvisionedConcurrencyConfigs' | |
|
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.
$sel:functionName: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.
ListProvisionedConcurrencyConfigsResponse' | |
|
Instances
newListProvisionedConcurrencyConfigsResponse Source #
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:provisionedConcurrencyConfigs:ListProvisionedConcurrencyConfigsResponse'
, listProvisionedConcurrencyConfigsResponse_provisionedConcurrencyConfigs
- A list of provisioned concurrency configurations.
$sel:nextMarker:ListProvisionedConcurrencyConfigsResponse'
, listProvisionedConcurrencyConfigsResponse_nextMarker
- The pagination token that's included if more results are available.
$sel:httpStatus:ListProvisionedConcurrencyConfigsResponse'
, listProvisionedConcurrencyConfigsResponse_httpStatus
- The response's http status code.
Response Lenses
listProvisionedConcurrencyConfigsResponse_provisionedConcurrencyConfigs :: Lens' ListProvisionedConcurrencyConfigsResponse (Maybe [ProvisionedConcurrencyConfigListItem]) Source #
A list of provisioned concurrency configurations.
listProvisionedConcurrencyConfigsResponse_nextMarker :: Lens' ListProvisionedConcurrencyConfigsResponse (Maybe Text) Source #
The pagination token that's included if more results are available.
listProvisionedConcurrencyConfigsResponse_httpStatus :: Lens' ListProvisionedConcurrencyConfigsResponse Int Source #
The response's http status code.