{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "#/components/schemas/Concurrency",
"title": "Concurrency",
"type": "object",
"properties": {
"ReservedConcurrentExecutions": {
"allOf": [
{
"$ref": "#/components/schemas/ReservedConcurrentExecutions"
},
{
"description": "The number of concurrent executions that are reserved for this function. For more information, see <a href=\"https://docs.aws.amazon.com/lambda/latest/dg/configuration-concurrency.html\">Managing Lambda reserved concurrency</a>."
}
]
}
}
}