Class: Aws::EMR::Types::MetricDimension

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

Overview

A CloudWatch dimension, which is specified using a Key (known as a Name in CloudWatch), Value pair. By default, Amazon EMR uses one dimension whose Key is JobFlowID and Value is a variable representing the cluster ID, which is $\{emr.clusterId\}. This enables the rule to bootstrap when the cluster ID becomes available.

Constant Summary collapse

SENSITIVE =
[]

Instance Attribute Summary collapse

Instance Attribute Details

#keyString

The dimension name.

Returns:

  • (String)


4458
4459
4460
4461
4462
4463
# File 'gems/aws-sdk-emr/lib/aws-sdk-emr/types.rb', line 4458

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

#valueString

The dimension value.

Returns:

  • (String)


4458
4459
4460
4461
4462
4463
# File 'gems/aws-sdk-emr/lib/aws-sdk-emr/types.rb', line 4458

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