{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "#/components/schemas/DeleteStreamInput", "title": "DeleteStreamInput", "type": "object", "properties": { "StreamName": { "allOf": [ { "$ref": "#/components/schemas/StreamName" }, { "description": "The name of the stream to delete." } ] }, "EnforceConsumerDeletion": { "allOf": [ { "$ref": "#/components/schemas/BooleanObject" }, { "description": "If this parameter is unset (null) or if you set it to false, and the stream has registered consumers, the call to DeleteStream fails with a ResourceInUseException. " } ] }, "StreamARN": { "allOf": [ { "$ref": "#/components/schemas/StreamARN" }, { "description": "The ARN of the stream." } ] } }, "description": "Represents the input for DeleteStream." }