Interface CfnEndpointConfigPropsMixin.ScaleInPolicyProperty

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

@Stability(Stable) public static interface CfnEndpointConfigPropsMixin.ScaleInPolicyProperty extends software.amazon.jsii.JsiiSerializable
Specifies how the endpoint releases instances when managed instance scaling scales in.

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.sagemaker.*;
 ScaleInPolicyProperty scaleInPolicyProperty = ScaleInPolicyProperty.builder()
         .cooldownInMinutes(123)
         .maximumStepSize(123)
         .strategy("strategy")
         .build();
 

See Also: