Class: Aws::AppStream::Types::TagResourceRequest
- Inherits:
-
Struct
- Object
- Struct
- Aws::AppStream::Types::TagResourceRequest
- Defined in:
- gems/aws-sdk-appstream/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.
4967 4968 4969 4970 4971 4972 |
# File 'gems/aws-sdk-appstream/lib/aws-sdk-appstream/types.rb', line 4967 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:
_ . : / = + \ - @
4967 4968 4969 4970 4971 4972 |
# File 'gems/aws-sdk-appstream/lib/aws-sdk-appstream/types.rb', line 4967 class TagResourceRequest < Struct.new( :resource_arn, :tags) SENSITIVE = [] include Aws::Structure end |