Class: Aws::Repostspace::Types::TagResourceRequest
- Inherits:
-
Struct
- Object
- Struct
- Aws::Repostspace::Types::TagResourceRequest
- Defined in:
- gems/aws-sdk-repostspace/lib/aws-sdk-repostspace/types.rb
Overview
Constant Summary collapse
- SENSITIVE =
[:tags]
Instance Attribute Summary collapse
-
#resource_arn ⇒ String
The ARN of the resource that the tag is associated with.
-
#tags ⇒ Hash<String,String>
The list of tag keys and values that must be associated with the resource.
Instance Attribute Details
#resource_arn ⇒ String
The ARN of the resource that the tag is associated with.
651 652 653 654 655 656 |
# File 'gems/aws-sdk-repostspace/lib/aws-sdk-repostspace/types.rb', line 651 class TagResourceRequest < Struct.new( :resource_arn, :tags) SENSITIVE = [:tags] include Aws::Structure end |
#tags ⇒ Hash<String,String>
The list of tag keys and values that must be associated with the resource. You can associate tag keys only, tags (key and values) only, or a combination of tag keys and tags.
651 652 653 654 655 656 |
# File 'gems/aws-sdk-repostspace/lib/aws-sdk-repostspace/types.rb', line 651 class TagResourceRequest < Struct.new( :resource_arn, :tags) SENSITIVE = [:tags] include Aws::Structure end |