Interface CfnScalingPlan.MetricDimensionProperty

All Superinterfaces:
software.amazon.jsii.JsiiSerializable
All Known Implementing Classes:
CfnScalingPlan.MetricDimensionProperty.Jsii$Proxy
Enclosing class:
CfnScalingPlan

@Stability(Stable) public static interface CfnScalingPlan.MetricDimensionProperty extends software.amazon.jsii.JsiiSerializable
MetricDimension is a subproperty of CustomizedScalingMetricSpecification that specifies a dimension for a customized metric to use with a scaling plan. Dimensions are arbitrary name/value pairs that can be associated with a CloudWatch metric. Duplicate dimensions are not allowed.

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.autoscalingplans.*;
 MetricDimensionProperty metricDimensionProperty = MetricDimensionProperty.builder()
         .name("name")
         .value("value")
         .build();
 

See Also: