Class CfnClusterPropsMixin.MetricDimensionProperty
MetricDimension is a subproperty of the CloudWatchAlarmDefinition property type.
Implements
Inherited Members
Namespace: Amazon.CDK.Mixins.Preview.AWS.EMR.Mixins
Assembly: Amazon.CDK.Mixins.Preview.dll
Syntax (csharp)
public class CfnClusterPropsMixin.MetricDimensionProperty : CfnClusterPropsMixin.IMetricDimensionProperty
Syntax (vb)
Public Class CfnClusterPropsMixin.MetricDimensionProperty Implements CfnClusterPropsMixin.IMetricDimensionProperty
Remarks
MetricDimension specifies a CloudWatch dimension, which is specified with a Key Value pair. The key is known as a Name in CloudWatch. 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 automatic scaling rule for EMR to bootstrap when the cluster ID becomes available during cluster creation.
ExampleMetadata: fixture=_generated
Examples
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
using Amazon.CDK.Mixins.Preview.AWS.EMR.Mixins;
var metricDimensionProperty = new MetricDimensionProperty {
Key = "key",
Value = "value"
};
Synopsis
Constructors
| MetricDimensionProperty() |
|
Properties
| Key | The dimension name. |
| Value | The dimension value. |
Constructors
MetricDimensionProperty()
MetricDimension is a subproperty of the CloudWatchAlarmDefinition property type.
public MetricDimensionProperty()
Remarks
MetricDimension specifies a CloudWatch dimension, which is specified with a Key Value pair. The key is known as a Name in CloudWatch. 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 automatic scaling rule for EMR to bootstrap when the cluster ID becomes available during cluster creation.
ExampleMetadata: fixture=_generated
Examples
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
using Amazon.CDK.Mixins.Preview.AWS.EMR.Mixins;
var metricDimensionProperty = new MetricDimensionProperty {
Key = "key",
Value = "value"
};
Properties
Key
The dimension name.
public string? Key { get; set; }
Property Value
Remarks
Value
The dimension value.
public string? Value { get; set; }