Properties
| Name | Type | Description |
|---|---|---|
| UpdateRuntimeOn | object | |
| FunctionArn | object | |
| RuntimeVersionArn | object |
JSON Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "#/components/schemas/PutRuntimeManagementConfigResponse",
"title": "PutRuntimeManagementConfigResponse",
"type": "object",
"required": [
"UpdateRuntimeOn",
"FunctionArn"
],
"properties": {
"UpdateRuntimeOn": {
"allOf": [
{
"$ref": "#/components/schemas/UpdateRuntimeOn"
},
{
"description": "The runtime update mode."
}
]
},
"FunctionArn": {
"allOf": [
{
"$ref": "#/components/schemas/FunctionArn"
},
{
"description": "The ARN 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 <b>manual</b>, the ARN is returned, otherwise <code>null</code> is returned."
}
]
}
}
}