Interface EmrCreateCluster.MetricDimensionProperty
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
EmrCreateCluster.MetricDimensionProperty.Jsii$Proxy
- Enclosing class:
- EmrCreateCluster
@Stability(Stable)
public static interface EmrCreateCluster.MetricDimensionProperty
extends software.amazon.jsii.JsiiSerializable
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
Example:
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import software.amazon.awscdk.services.stepfunctions.tasks.*;
MetricDimensionProperty metricDimensionProperty = MetricDimensionProperty.builder()
.key("key")
.value("value")
.build();
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classA builder forEmrCreateCluster.MetricDimensionPropertystatic final classAn implementation forEmrCreateCluster.MetricDimensionProperty -
Method Summary
Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getKey
The dimension name. -
getValue
The dimension value. -
builder
-