TagResourceRequest schema from Amazon Managed Service for Apache Flink API
{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "https://raw.githubusercontent.com/api-evangelist/amazon-managed-apache-flink/refs/heads/main/json-schema/amazon-managed-apache-flink-tag-resource-request-schema.json", "title": "TagResourceRequest", "description": "TagResourceRequest schema from Amazon Managed Service for Apache Flink API", "type": "object", "properties": { "ResourceARN": { "allOf": [ { "$ref": "#/components/schemas/KinesisAnalyticsARN" }, { "description": "The ARN of the application to assign the tags." } ] }, "Tags": { "allOf": [ { "$ref": "#/components/schemas/Tags" }, { "description": "The key-value tags to assign to the application." } ] } }, "required": [ "ResourceARN", "Tags" ] }