{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "#/components/schemas/GetRuntimeManagementConfigResponse",
"title": "GetRuntimeManagementConfigResponse",
"type": "object",
"properties": {
"UpdateRuntimeOn": {
"allOf": [
{
"$ref": "#/components/schemas/UpdateRuntimeOn"
},
{
"description": "The current runtime update mode of the function."
}
]
},
"RuntimeVersionArn": {
"allOf": [
{
"$ref": "#/components/schemas/RuntimeVersionArn"
},
{
"description": "The ARN of the runtime the function is configured to use. If the runtime update mode is Manual, the ARN is returned, otherwise null is returned."
}
]
},
"FunctionArn": {
"allOf": [
{
"$ref": "#/components/schemas/NameSpacedFunctionArn"
},
{
"description": "The Amazon Resource Name (ARN) of your function."
}
]
}
}
}