Class: Aws::AppStream::Types::TagResourceRequest

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

Overview

Note:

When making an API call, you may pass TagResourceRequest data as a hash:

{
  resource_arn: "Arn", # required
  tags: { # required
    "TagKey" => "TagValue",
  },
}

Instance Attribute Summary collapse

Instance Attribute Details

#resource_arnString

The Amazon Resource Name (ARN) of the resource.

Returns:

  • (String)


2666
2667
2668
2669
2670
# File 'lib/aws-sdk-appstream/types.rb', line 2666

class TagResourceRequest < Struct.new(
  :resource_arn,
  :tags)
  include Aws::Structure
end

#tagsHash<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.

Returns:

  • (Hash<String,String>)


2666
2667
2668
2669
2670
# File 'lib/aws-sdk-appstream/types.rb', line 2666

class TagResourceRequest < Struct.new(
  :resource_arn,
  :tags)
  include Aws::Structure
end