Interface CfnScalingPlan.PredefinedLoadMetricSpecificationProperty

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

@Stability(Stable) public static interface CfnScalingPlan.PredefinedLoadMetricSpecificationProperty extends software.amazon.jsii.JsiiSerializable
PredefinedLoadMetricSpecification is a subproperty of ScalingInstruction that specifies a predefined load metric for predictive scaling to use with a scaling plan.

After creating your scaling plan, you can use the AWS Auto Scaling console to visualize forecasts for the specified metric. For more information, see View scaling information for a resource in the Scaling Plans User Guide .

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.*;
 PredefinedLoadMetricSpecificationProperty predefinedLoadMetricSpecificationProperty = PredefinedLoadMetricSpecificationProperty.builder()
         .predefinedLoadMetricType("predefinedLoadMetricType")
         // the properties below are optional
         .resourceLabel("resourceLabel")
         .build();
 

See Also: