{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "#/components/schemas/TagResourceRequest",
"title": "TagResourceRequest",
"type": "object",
"required": [
"tags"
],
"properties": {
"tags": {
"allOf": [
{
"$ref": "#/components/schemas/MapOfStringToString"
},
{
"description": "The key-value map of strings. The valid character set is [a-zA-Z+-=._:/]. The tag key can be up to 128 characters and must not start with <code>aws:</code>. The tag value can be up to 256 characters."
}
]
}
},
"description": "Adds or updates a tag on a given resource."
}