{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "#/components/schemas/DeleteSignalingChannelInput", "title": "DeleteSignalingChannelInput", "type": "object", "required": [ "ChannelARN" ], "properties": { "ChannelARN": { "allOf": [ { "$ref": "#/components/schemas/ResourceARN" }, { "description": "The Amazon Resource Name (ARN) of the signaling channel that you want to delete." } ] }, "CurrentVersion": { "allOf": [ { "$ref": "#/components/schemas/Version" }, { "description": "The current version of the signaling channel that you want to delete. You can obtain the current version by invoking the DescribeSignalingChannel or ListSignalingChannels API operations." } ] } } }