Lambda.Paginator.
ListProvisionedConcurrencyConfigs
¶paginator = client.get_paginator('list_provisioned_concurrency_configs')
paginate
(**kwargs)¶Creates an iterator that will paginate through responses from Lambda.Client.list_provisioned_concurrency_configs()
.
See also: AWS API Documentation
Request Syntax
response_iterator = paginator.paginate(
FunctionName='string',
PaginationConfig={
'MaxItems': 123,
'PageSize': 123,
'StartingToken': 'string'
}
)
[REQUIRED]
The name of the Lambda function.
Name formats
my-function
.arn:aws:lambda:us-west-2:123456789012:function:my-function
.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.
A dictionary that provides parameters to control pagination.
The total number of items to return. If the total number of items available is more than the value specified in max-items then a NextToken
will be provided in the output that you can use to resume pagination.
The size of each page.
A token to specify where to start paginating. This is the NextToken
from a previous response.
dict
Response Syntax
{
'ProvisionedConcurrencyConfigs': [
{
'FunctionArn': 'string',
'RequestedProvisionedConcurrentExecutions': 123,
'AvailableProvisionedConcurrentExecutions': 123,
'AllocatedProvisionedConcurrentExecutions': 123,
'Status': 'IN_PROGRESS'|'READY'|'FAILED',
'StatusReason': 'string',
'LastModified': 'string'
},
],
'NextToken': 'string'
}
Response Structure
(dict) --
ProvisionedConcurrencyConfigs (list) --
A list of provisioned concurrency configurations.
(dict) --
Details about the provisioned concurrency configuration for a function alias or version.
FunctionArn (string) --
The Amazon Resource Name (ARN) of the alias or version.
RequestedProvisionedConcurrentExecutions (integer) --
The amount of provisioned concurrency requested.
AvailableProvisionedConcurrentExecutions (integer) --
The amount of provisioned concurrency available.
AllocatedProvisionedConcurrentExecutions (integer) --
The amount of provisioned concurrency allocated. When a weighted alias is used during linear and canary deployments, this value fluctuates depending on the amount of concurrency that is provisioned for the function versions.
Status (string) --
The status of the allocation process.
StatusReason (string) --
For failed allocations, the reason that provisioned concurrency could not be allocated.
LastModified (string) --
The date and time that a user last updated the configuration, in ISO 8601 format.
NextToken (string) --
A token to resume pagination.