{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "#/components/schemas/TagDeliveryStreamInput",
"title": "TagDeliveryStreamInput",
"type": "object",
"required": [
"DeliveryStreamName",
"Tags"
],
"properties": {
"DeliveryStreamName": {
"allOf": [
{
"$ref": "#/components/schemas/DeliveryStreamName"
},
{
"description": "The name of the delivery stream to which you want to add the tags."
}
]
},
"Tags": {
"allOf": [
{
"$ref": "#/components/schemas/TagDeliveryStreamInputTagList"
},
{
"description": "A set of key-value pairs to use to create the tags."
}
]
}
}
}