Properties
| Name | Type | Description |
|---|---|---|
| Configuration | object | |
| Code | object | |
| Tags | object | |
| Concurrency | object |
JSON Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "#/components/schemas/GetFunctionResponse",
"title": "GetFunctionResponse",
"type": "object",
"properties": {
"Configuration": {
"allOf": [
{
"$ref": "#/components/schemas/FunctionConfiguration"
},
{
"description": "The configuration of the function or version."
}
]
},
"Code": {
"allOf": [
{
"$ref": "#/components/schemas/FunctionCodeLocation"
},
{
"description": "The deployment package of the function or version."
}
]
},
"Tags": {
"allOf": [
{
"$ref": "#/components/schemas/Tags"
},
{
"description": "The function's <a href=\"https://docs.aws.amazon.com/lambda/latest/dg/tagging.html\">tags</a>."
}
]
},
"Concurrency": {
"allOf": [
{
"$ref": "#/components/schemas/Concurrency"
},
{
"description": "The function's <a href=\"https://docs.aws.amazon.com/lambda/latest/dg/concurrent-executions.html\">reserved concurrency</a>."
}
]
}
}
}