{ "$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 manual, the ARN is returned, otherwise null is returned." } ] } } }