Class: Aws::StorageGateway::Types::AddTagsToResourceInput
- Inherits:
-
Struct
- Object
- Struct
- Aws::StorageGateway::Types::AddTagsToResourceInput
- Includes:
- Aws::Structure
- Defined in:
- lib/aws-sdk-storagegateway/types.rb
Overview
AddTagsToResourceInput
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#resource_arn ⇒ String
The Amazon Resource Name (ARN) of the resource you want to add tags to.
-
#tags ⇒ Array<Types::Tag>
The key-value pair that represents the tag you want to add to the resource.
Instance Attribute Details
#resource_arn ⇒ String
The Amazon Resource Name (ARN) of the resource you want to add tags to.
220 221 222 223 224 225 |
# File 'lib/aws-sdk-storagegateway/types.rb', line 220 class AddTagsToResourceInput < Struct.new( :resource_arn, :tags) SENSITIVE = [] include Aws::Structure end |
#tags ⇒ Array<Types::Tag>
The key-value pair that represents the tag you want to add to the resource. The value can be an empty string.
<note markdown=“1”> Valid characters for key and value are letters, spaces, and numbers representable in UTF-8 format, and the following special characters: + - = . _ : / @. The maximum length of a tag’s key is 128 characters, and the maximum length for a tag’s value is 256.
</note>
220 221 222 223 224 225 |
# File 'lib/aws-sdk-storagegateway/types.rb', line 220 class AddTagsToResourceInput < Struct.new( :resource_arn, :tags) SENSITIVE = [] include Aws::Structure end |