Class: Aws::StorageGateway::Types::AddTagsToResourceInput

Inherits:
Struct
  • Object
show all
Includes:
Aws::Structure
Defined in:
lib/aws-sdk-storagegateway/types.rb

Overview

AddTagsToResourceInput

Constant Summary collapse

SENSITIVE =
[]

Instance Attribute Summary collapse

Instance Attribute Details

#resource_arnString

The Amazon Resource Name (ARN) of the resource you want to add tags to.

Returns:

  • (String)


210
211
212
213
214
215
# File 'lib/aws-sdk-storagegateway/types.rb', line 210

class AddTagsToResourceInput < Struct.new(
  :resource_arn,
  :tags)
  SENSITIVE = []
  include Aws::Structure
end

#tagsArray<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>

Returns:



210
211
212
213
214
215
# File 'lib/aws-sdk-storagegateway/types.rb', line 210

class AddTagsToResourceInput < Struct.new(
  :resource_arn,
  :tags)
  SENSITIVE = []
  include Aws::Structure
end