{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "#/components/schemas/RemoveTagsFromStreamInput",
"title": "RemoveTagsFromStreamInput",
"type": "object",
"required": [
"TagKeys"
],
"properties": {
"StreamName": {
"allOf": [
{
"$ref": "#/components/schemas/StreamName"
},
{
"description": "The name of the stream."
}
]
},
"TagKeys": {
"allOf": [
{
"$ref": "#/components/schemas/TagKeyList"
},
{
"description": "A list of tag keys. Each corresponding tag is removed from the stream."
}
]
},
"StreamARN": {
"allOf": [
{
"$ref": "#/components/schemas/StreamARN"
},
{
"description": "The ARN of the stream."
}
]
}
},
"description": "Represents the input for <code>RemoveTagsFromStream</code>."
}