Amazon MediaConvert · JSON Structure

Mediaconvert Api Tag Resource Request Structure

TagResourceRequest schema from Amazon MediaConvert API

Type: object Properties: 2 Required: 2
BroadcastingMedia ProcessingMedia

TagResourceRequest is a JSON Structure definition published by Amazon MediaConvert, describing 2 properties, of which 2 are required. It conforms to the https://json-structure.org/meta/core/v0/# meta-schema.

Properties

Arn Tags

Meta-schema: https://json-structure.org/meta/core/v0/#

JSON Structure

Raw ↑
{
  "$schema": "https://json-structure.org/meta/core/v0/#",
  "$id": "https://raw.githubusercontent.com/api-evangelist/amazon-mediaconvert/refs/heads/main/json-structure/mediaconvert-api-tag-resource-request-structure.json",
  "name": "TagResourceRequest",
  "type": "object",
  "description": "TagResourceRequest schema from Amazon MediaConvert API",
  "properties": {
    "Arn": {
      "allOf": [
        {
          "$ref": "#/components/schemas/__string"
        },
        {
          "xml": {
            "name": "arn"
          },
          "description": "The Amazon Resource Name (ARN) of the resource that you want to tag. To get the ARN, send a GET request with the resource name."
        }
      ]
    },
    "Tags": {
      "allOf": [
        {
          "$ref": "#/components/schemas/__mapOf__string"
        },
        {
          "xml": {
            "name": "tags"
          },
          "description": "The tags that you want to add to the resource. You can tag resources with a key-value pair or with only a key."
        }
      ]
    }
  },
  "required": [
    "Arn",
    "Tags"
  ]
}