Class: Aws::EMR::Types::Tag
- Inherits:
-
Struct
- Object
- Struct
- Aws::EMR::Types::Tag
- Defined in:
- gems/aws-sdk-emr/lib/aws-sdk-emr/types.rb
Overview
Note:
When making an API call, you may pass Tag data as a hash:
{
key: "String",
value: "String",
}
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.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#key ⇒ String
A user-defined key, which is the minimum required information for a valid tag.
-
#value ⇒ String
A user-defined value, which is optional in a tag.
Instance Attribute Details
#key ⇒ String
A user-defined key, which is the minimum required information for a valid tag. For more information, see Tag .
7396 7397 7398 7399 7400 7401 |
# File 'gems/aws-sdk-emr/lib/aws-sdk-emr/types.rb', line 7396 class Tag < Struct.new( :key, :value) SENSITIVE = [] include Aws::Structure end |
#value ⇒ String
A user-defined value, which is optional in a tag. For more information, see Tag Clusters.
7396 7397 7398 7399 7400 7401 |
# File 'gems/aws-sdk-emr/lib/aws-sdk-emr/types.rb', line 7396 class Tag < Struct.new( :key, :value) SENSITIVE = [] include Aws::Structure end |