Class: Aws::ResourceGroupsTaggingAPI::Types::TagResourcesInput

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

Overview

Constant Summary collapse

SENSITIVE =
[]

Instance Attribute Summary collapse

Instance Attribute Details

#resource_arn_listArray<String>

Specifies the list of ARNs of the resources that you want to apply tags to.

An ARN (Amazon Resource Name) uniquely identifies a resource. For more information, see [Amazon Resource Names (ARNs) and Amazon Web Services Service Namespaces] in the *Amazon Web Services General Reference*.

[1]: docs.aws.amazon.com/general/latest/gr/aws-arns-and-namespaces.html

Returns:

  • (Array<String>)


774
775
776
777
778
779
# File 'lib/aws-sdk-resourcegroupstaggingapi/types.rb', line 774

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

#tagsHash<String,String>

Specifies a list of tags that you want to add to the specified resources. A tag consists of a key and a value that you define.

Returns:

  • (Hash<String,String>)


774
775
776
777
778
779
# File 'lib/aws-sdk-resourcegroupstaggingapi/types.rb', line 774

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