ResourceTags

The Amazon Resource Name (ARN) and tags for an AWS Elemental MediaConvert resource.

BroadcastingMedia ProcessingMedia

Properties

Name Type Description
Arn object
Tags object
View JSON Schema on GitHub

JSON Schema

mediaconvert-api-resource-tags-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "https://raw.githubusercontent.com/api-evangelist/amazon-mediaconvert/refs/heads/main/json-schema/mediaconvert-api-resource-tags-schema.json",
  "title": "ResourceTags",
  "description": "The Amazon Resource Name (ARN) and tags for an AWS Elemental MediaConvert resource.",
  "type": "object",
  "properties": {
    "Arn": {
      "allOf": [
        {
          "$ref": "#/components/schemas/__string"
        },
        {
          "xml": {
            "name": "arn"
          },
          "description": "The Amazon Resource Name (ARN) of the resource."
        }
      ]
    },
    "Tags": {
      "allOf": [
        {
          "$ref": "#/components/schemas/__mapOf__string"
        },
        {
          "xml": {
            "name": "tags"
          },
          "description": "The tags for the resource."
        }
      ]
    }
  }
}