Class: Aws::EMR::Types::AddTagsInput

Inherits:
Struct
  • Object
show all
Defined in:
gems/aws-sdk-emr/lib/aws-sdk-emr/types.rb

Overview

This input identifies an Amazon EMR resource and a list of tags to attach.

Constant Summary collapse

SENSITIVE =
[]

Instance Attribute Summary collapse

Instance Attribute Details

#resource_idString

The Amazon EMR resource identifier to which tags will be added. For example, a cluster identifier or an Amazon EMR Studio ID.

Returns:

  • (String)


158
159
160
161
162
163
# File 'gems/aws-sdk-emr/lib/aws-sdk-emr/types.rb', line 158

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

#tagsArray<Types::Tag>

A list of tags to associate with a resource. Tags are user-defined key-value pairs that consist of a required key string with a maximum of 128 characters, and an optional value string with a maximum of 256 characters.

Returns:



158
159
160
161
162
163
# File 'gems/aws-sdk-emr/lib/aws-sdk-emr/types.rb', line 158

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