Class: Aws::Route53::Types::ChangeTagsForResourceRequest
- Inherits:
-
Struct
- Object
- Struct
- Aws::Route53::Types::ChangeTagsForResourceRequest
- Defined in:
- gems/aws-sdk-route53/lib/aws-sdk-route53/types.rb
Overview
A complex type that contains information about the tags that you want to add, edit, or delete.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#add_tags ⇒ Array<Types::Tag>
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
Valuefor. -
#remove_tag_keys ⇒ Array<String>
A complex type that contains a list of the tags that you want to delete from the specified health check or hosted zone.
-
#resource_id ⇒ String
The ID of the resource for which you want to add, change, or delete tags.
-
#resource_type ⇒ String
The type of the resource.
Instance Attribute Details
#add_tags ⇒ Array<Types::Tag>
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.
838 839 840 841 842 843 844 845 |
# File 'gems/aws-sdk-route53/lib/aws-sdk-route53/types.rb', line 838 class ChangeTagsForResourceRequest < Struct.new( :resource_type, :resource_id, :add_tags, :remove_tag_keys) SENSITIVE = [] include Aws::Structure end |
#remove_tag_keys ⇒ Array<String>
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.
838 839 840 841 842 843 844 845 |
# File 'gems/aws-sdk-route53/lib/aws-sdk-route53/types.rb', line 838 class ChangeTagsForResourceRequest < Struct.new( :resource_type, :resource_id, :add_tags, :remove_tag_keys) SENSITIVE = [] include Aws::Structure end |
#resource_id ⇒ String
The ID of the resource for which you want to add, change, or delete tags.
838 839 840 841 842 843 844 845 |
# File 'gems/aws-sdk-route53/lib/aws-sdk-route53/types.rb', line 838 class ChangeTagsForResourceRequest < Struct.new( :resource_type, :resource_id, :add_tags, :remove_tag_keys) SENSITIVE = [] include Aws::Structure end |
#resource_type ⇒ String
The type of the resource.
The resource type for health checks is
healthcheck.The resource type for hosted zones is
hostedzone.
838 839 840 841 842 843 844 845 |
# File 'gems/aws-sdk-route53/lib/aws-sdk-route53/types.rb', line 838 class ChangeTagsForResourceRequest < Struct.new( :resource_type, :resource_id, :add_tags, :remove_tag_keys) SENSITIVE = [] include Aws::Structure end |