AWS Lambda · Schema
ProvisionedConcurrencyConfig
Provisioned concurrency configuration for a function
Properties
| Name | Type | Description |
|---|---|---|
| RequestedProvisionedConcurrentExecutions | integer | The amount of provisioned concurrency requested |
| AvailableProvisionedConcurrentExecutions | integer | The amount of provisioned concurrency available |
| AllocatedProvisionedConcurrentExecutions | integer | The amount of provisioned concurrency allocated |
| Status | string | The status of the allocation |
| StatusReason | string | For failed allocations, the reason the status is FAILED |
| LastModified | string | The date and time the configuration was last modified |
JSON Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"title": "ProvisionedConcurrencyConfig",
"type": "object",
"description": "Provisioned concurrency configuration for a function",
"properties": {
"RequestedProvisionedConcurrentExecutions": {
"type": "integer",
"description": "The amount of provisioned concurrency requested"
},
"AvailableProvisionedConcurrentExecutions": {
"type": "integer",
"description": "The amount of provisioned concurrency available"
},
"AllocatedProvisionedConcurrentExecutions": {
"type": "integer",
"description": "The amount of provisioned concurrency allocated"
},
"Status": {
"type": "string",
"description": "The status of the allocation"
},
"StatusReason": {
"type": "string",
"description": "For failed allocations, the reason the status is FAILED"
},
"LastModified": {
"type": "string",
"description": "The date and time the configuration was last modified"
}
}
}