Class: Aws::AppMesh::Types::TagResourceInput

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

Overview

Note:

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

{
  resource_arn: "Arn", # required
  tags: [ # required
    {
      key: "TagKey", # required
      value: "TagValue",
    },
  ],
}

Instance Attribute Summary collapse

Instance Attribute Details

#resource_arnString

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

Returns:

  • (String)


2740
2741
2742
2743
2744
# File 'lib/aws-sdk-appmesh/types.rb', line 2740

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

#tagsArray<Types::TagRef>

The tags to add to the resource. A tag is an array of key-value pairs. Tag keys can have a maximum character length of 128 characters, and tag values can have a maximum length of 256 characters.

Returns:



2740
2741
2742
2743
2744
# File 'lib/aws-sdk-appmesh/types.rb', line 2740

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