Interface CfnCluster.IMetricDimensionProperty
MetricDimension
is a subproperty of the CloudWatchAlarmDefinition
property type.
Namespace: Amazon.CDK.AWS.EMR
Assembly: Amazon.CDK.AWS.EMR.dll
Syntax (csharp)
public interface IMetricDimensionProperty
Syntax (vb)
Public Interface 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.AWS.EMR;
var metricDimensionProperty = new MetricDimensionProperty {
Key = "key",
Value = "value"
};
Synopsis
Properties
Key | The dimension name. |
Value | The dimension value. |
Properties
Key
The dimension name.
string Key { get; }
Property Value
System.String
Remarks
Value
The dimension value.
string Value { get; }
Property Value
System.String