Class: Aws::AppStream::Types::TagResourceRequest
- Inherits:
-
Struct
- Object
- Struct
- Aws::AppStream::Types::TagResourceRequest
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-appstream/types.rb
Overview
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#resource_arn ⇒ String
The Amazon Resource Name (ARN) of the resource.
-
#tags ⇒ Hash<String,String>
The tags to associate.
Instance Attribute Details
#resource_arn ⇒ String
The Amazon Resource Name (ARN) of the resource.
4178 4179 4180 4181 4182 4183 |
# File 'lib/aws-sdk-appstream/types.rb', line 4178 class TagResourceRequest < Struct.new( :resource_arn, :tags) SENSITIVE = [] include Aws::Structure end |
#tags ⇒ Hash<String,String>
The tags to associate. A tag is a key-value pair, and the value is optional. For example, Environment=Test. If you do not specify a value, Environment=.
If you do not specify a value, the value is set to an empty string.
Generally allowed characters are: letters, numbers, and spaces representable in UTF-8, and the following special characters:
_ . : / = + \ - @
4178 4179 4180 4181 4182 4183 |
# File 'lib/aws-sdk-appstream/types.rb', line 4178 class TagResourceRequest < Struct.new( :resource_arn, :tags) SENSITIVE = [] include Aws::Structure end |