You are viewing documentation for version 2 of the AWS SDK for Ruby. Version 3 documentation can be found here.

Class: Aws::ResourceGroups::Types::TagInput

Inherits:
Struct
  • Object
show all
Defined in:
(unknown)

Overview

Note:

When passing TagInput as input to an Aws::Client method, you can use a vanilla Hash:

{
  arn: "GroupArn", # required
  tags: { # required
    "TagKey" => "TagValue",
  },
}

Instance Attribute Summary collapse

Instance Attribute Details

#arnString

The ARN of the resource group to which to add tags.

Returns:

  • (String)

    The ARN of the resource group to which to add tags.

#tagsHash<String,String>

The tags to add to the specified resource group. A tag is a string-to-string map of key-value pairs.

Returns:

  • (Hash<String,String>)

    The tags to add to the specified resource group.