TagResourceRequest schema
{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "https://raw.githubusercontent.com/api-evangelist/amazon-config/refs/heads/main/json-schema/config-tag-resource-request-schema.json", "title": "TagResourceRequest", "description": "TagResourceRequest schema", "type": "object", "properties": { "ResourceArn": { "allOf": [ { "$ref": "#/components/schemas/AmazonResourceName" }, { "description": "The Amazon Resource Name (ARN) that identifies the resource for which to list the tags. Currently, the supported resources are <code>ConfigRule</code>, <code>ConfigurationAggregator</code> and <code>AggregatorAuthorization</code>." } ] }, "Tags": { "allOf": [ { "$ref": "#/components/schemas/TagList" }, { "description": "An array of tag object." } ] } }, "required": [ "ResourceArn", "Tags" ] }