Interface CfnScalingPolicyPropsMixin.TargetTrackingMetricDimensionProperty
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnScalingPolicyPropsMixin.TargetTrackingMetricDimensionProperty.Jsii$Proxy
- Enclosing class:
CfnScalingPolicyPropsMixin
@Stability(Stable)
public static interface CfnScalingPolicyPropsMixin.TargetTrackingMetricDimensionProperty
extends software.amazon.jsii.JsiiSerializable
TargetTrackingMetricDimension specifies a name/value pair that is part of the identity of a CloudWatch metric for the Dimensions property of the AWS::ApplicationAutoScaling::ScalingPolicy TargetTrackingMetric property type. 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.cfnpropertymixins.services.applicationautoscaling.*;
TargetTrackingMetricDimensionProperty targetTrackingMetricDimensionProperty = TargetTrackingMetricDimensionProperty.builder()
.name("name")
.value("value")
.build();
- See Also:
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classstatic final classAn implementation forCfnScalingPolicyPropsMixin.TargetTrackingMetricDimensionProperty -
Method Summary
Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getName
The name of the dimension.- See Also:
-
getValue
The value of the dimension.- See Also:
-
builder
@Stability(Stable) static CfnScalingPolicyPropsMixin.TargetTrackingMetricDimensionProperty.Builder builder()
-