Class: Aws::EMR::Types::RemoveTagsInput

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 remove.

Constant Summary collapse

SENSITIVE =
[]

Instance Attribute Summary collapse

Instance Attribute Details

#resource_idString

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

Returns:

  • (String)


5260
5261
5262
5263
5264
5265
# File 'gems/aws-sdk-emr/lib/aws-sdk-emr/types.rb', line 5260

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

#tag_keysArray<String>

A list of tag keys to remove from the resource.

Returns:

  • (Array<String>)


5260
5261
5262
5263
5264
5265
# File 'gems/aws-sdk-emr/lib/aws-sdk-emr/types.rb', line 5260

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