AddTagsToResourceInput

AddTagsToResourceInput

BackupFile StorageGatewayHybrid CloudStorage

Properties

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

JSON Schema

amazon-storage-gateway-add-tags-to-resource-input-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "https://raw.githubusercontent.com/api-evangelist/amazon-storage-gateway/refs/heads/main/json-schema/amazon-storage-gateway-add-tags-to-resource-input-schema.json",
  "title": "AddTagsToResourceInput",
  "description": "AddTagsToResourceInput",
  "type": "object",
  "properties": {
    "ResourceARN": {
      "allOf": [
        {
          "$ref": "#/components/schemas/ResourceARN"
        },
        {
          "description": "The Amazon Resource Name (ARN) of the resource you want to add tags to."
        }
      ]
    },
    "Tags": {
      "allOf": [
        {
          "$ref": "#/components/schemas/Tags"
        },
        {
          "description": "<p>The key-value pair that represents the tag you want to add to the resource. The value can be an empty string.</p> <note> <p>Valid characters for key and value are letters, spaces, and numbers representable in UTF-8 format, and the following special characters: + - = . _ : / @. The maximum length of a tag's key is 128 characters, and the maximum length for a tag's value is 256.</p> </note>"
        }
      ]
    }
  },
  "required": [
    "ResourceARN",
    "Tags"
  ]
}