AWS App Mesh · Schema
TagList
TagList schema from AWS App Mesh
DeprecatedEnvoyMicroservicesNetworkingService Mesh
JSON Schema
{
"type": "array",
"items": {
"type": "object",
"properties": {
"key": {
"allOf": [
{
"$ref": "#/components/schemas/TagKey"
},
{
"description": "One part of a key-value pair that make up a tag. A <code>key</code> is a general label that acts like a category for more specific tag values."
}
]
},
"value": {
"allOf": [
{
"$ref": "#/components/schemas/TagValue"
},
{
"description": "The optional part of a key-value pair that make up a tag. A <code>value</code> acts as a descriptor within a tag category (key)."
}
]
}
},
"required": [
"key",
"value"
],
"description": "Optional metadata that you apply to a resource to assist with categorization and organization. Each tag consists of a key and an optional value, both of which you define. Tag keys can have a maximum character length of 128 characters, and tag values can have a maximum length of 256 characters."
},
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "https://raw.githubusercontent.com/api-evangelist/aws-app-mesh/refs/heads/main/json-schema/app-mesh-tag-list-schema.json",
"title": "TagList",
"description": "TagList schema from AWS App Mesh"
}