Class: Aws::Route53Domains::Types::UpdateTagsForDomainRequest
- Inherits:
-
Struct
- Object
- Struct
- Aws::Route53Domains::Types::UpdateTagsForDomainRequest
- Defined in:
- gems/aws-sdk-route53domains/lib/aws-sdk-route53domains/types.rb
Overview
The UpdateTagsForDomainRequest includes the following elements.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#domain_name ⇒ String
The domain for which you want to add or update tags.
-
#tags_to_update ⇒ Array<Types::Tag>
A list of the tag keys and values that you want to add or update.
Instance Attribute Details
#domain_name ⇒ String
The domain for which you want to add or update tags.
3132 3133 3134 3135 3136 3137 |
# File 'gems/aws-sdk-route53domains/lib/aws-sdk-route53domains/types.rb', line 3132 class UpdateTagsForDomainRequest < Struct.new( :domain_name, :tags_to_update) SENSITIVE = [] include Aws::Structure end |
#tags_to_update ⇒ Array<Types::Tag>
A list of the tag keys and values that you want to add or update. If you specify a key that already exists, the corresponding value will be replaced.
3132 3133 3134 3135 3136 3137 |
# File 'gems/aws-sdk-route53domains/lib/aws-sdk-route53domains/types.rb', line 3132 class UpdateTagsForDomainRequest < Struct.new( :domain_name, :tags_to_update) SENSITIVE = [] include Aws::Structure end |