class Aws::Route53::Types::ChangeTagsForResourceRequest

A complex type that contains information about the tags that you want to add, edit, or delete.

@note When making an API call, you may pass ChangeTagsForResourceRequest

data as a hash:

    {
      resource_type: "healthcheck", # required, accepts healthcheck, hostedzone
      resource_id: "TagResourceId", # required
      add_tags: [
        {
          key: "TagKey",
          value: "TagValue",
        },
      ],
      remove_tag_keys: ["TagKey"],
    }

@!attribute [rw] resource_type

The type of the resource.

* The resource type for health checks is `healthcheck`.

* The resource type for hosted zones is `hostedzone`.
@return [String]

@!attribute [rw] resource_id

The ID of the resource for which you want to add, change, or delete
tags.
@return [String]

@!attribute [rw] add_tags

A complex type that contains a list of the tags that you want to add
to the specified health check or hosted zone and/or the tags that
you want to edit `Value` for.

You can add a maximum of 10 tags to a health check or a hosted zone.
@return [Array<Types::Tag>]

@!attribute [rw] remove_tag_keys

A complex type that contains a list of the tags that you want to
delete from the specified health check or hosted zone. You can
specify up to 10 keys.
@return [Array<String>]

@see docs.aws.amazon.com/goto/WebAPI/route53-2013-04-01/ChangeTagsForResourceRequest AWS API Documentation

Constants

SENSITIVE