Interface CfnLayer.AutoScalingThresholdsProperty

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

@Stability(Stable) public static interface CfnLayer.AutoScalingThresholdsProperty extends software.amazon.jsii.JsiiSerializable
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.opsworks.*;
 AutoScalingThresholdsProperty autoScalingThresholdsProperty = AutoScalingThresholdsProperty.builder()
         .cpuThreshold(123)
         .ignoreMetricsTime(123)
         .instanceCount(123)
         .loadThreshold(123)
         .memoryThreshold(123)
         .thresholdsWaitTime(123)
         .build();
 

See Also: