RemoveTagsFromResourceInput

RemoveTagsFromResourceInput

BackupFile StorageGatewayHybrid CloudStorage

Properties

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

JSON Schema

amazon-storage-gateway-remove-tags-from-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-remove-tags-from-resource-input-schema.json",
  "title": "RemoveTagsFromResourceInput",
  "description": "RemoveTagsFromResourceInput",
  "type": "object",
  "properties": {
    "ResourceARN": {
      "allOf": [
        {
          "$ref": "#/components/schemas/ResourceARN"
        },
        {
          "description": "The Amazon Resource Name (ARN) of the resource you want to remove the tags from."
        }
      ]
    },
    "TagKeys": {
      "allOf": [
        {
          "$ref": "#/components/schemas/TagKeys"
        },
        {
          "description": "The keys of the tags you want to remove from the specified resource. A tag is composed of a key-value pair."
        }
      ]
    }
  },
  "required": [
    "ResourceARN",
    "TagKeys"
  ]
}