Interface MetricTargetTrackingProps

All Superinterfaces:
BaseTargetTrackingProps, software.amazon.jsii.JsiiSerializable
All Known Implementing Classes:
MetricTargetTrackingProps.Jsii$Proxy

@Generated(value="jsii-pacmak/1.84.0 (build 5404dcf)", date="2023-06-19T16:30:45.395Z") @Stability(Stable) public interface MetricTargetTrackingProps extends software.amazon.jsii.JsiiSerializable, BaseTargetTrackingProps
Properties for enabling tracking of an arbitrary metric.

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.autoscaling.*;
 import software.amazon.awscdk.services.cloudwatch.*;
 import software.amazon.awscdk.core.*;
 Metric metric;
 MetricTargetTrackingProps metricTargetTrackingProps = MetricTargetTrackingProps.builder()
         .metric(metric)
         .targetValue(123)
         // the properties below are optional
         .cooldown(Duration.minutes(30))
         .disableScaleIn(false)
         .estimatedInstanceWarmup(Duration.minutes(30))
         .build();