Class: Aws::EMR::Types::Tag

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

Overview

A key-value pair containing user-defined metadata that you can associate with an Amazon EMR resource. Tags make it easier to associate clusters in various ways, such as grouping clusters to track your Amazon EMR resource allocation costs. For more information, see [Tag Clusters].

[1]: docs.aws.amazon.com/emr/latest/ManagementGuide/emr-plan-tags.html

Constant Summary collapse

SENSITIVE =
[]

Instance Attribute Summary collapse

Instance Attribute Details

#keyString

A user-defined key, which is the minimum required information for a valid tag. For more information, see [Tag].

[1]: docs.aws.amazon.com/emr/latest/ManagementGuide/emr-plan-tags.html

Returns:

  • (String)


6850
6851
6852
6853
6854
6855
# File 'lib/aws-sdk-emr/types.rb', line 6850

class Tag < Struct.new(
  :key,
  :value)
  SENSITIVE = []
  include Aws::Structure
end

#valueString

A user-defined value, which is optional in a tag. For more information, see [Tag Clusters].

[1]: docs.aws.amazon.com/emr/latest/ManagementGuide/emr-plan-tags.html

Returns:

  • (String)


6850
6851
6852
6853
6854
6855
# File 'lib/aws-sdk-emr/types.rb', line 6850

class Tag < Struct.new(
  :key,
  :value)
  SENSITIVE = []
  include Aws::Structure
end