Interface CfnEndpointConfig.ScaleInPolicyProperty

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

@Stability(Stable) public static interface CfnEndpointConfig.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.services.sagemaker.*;
 ScaleInPolicyProperty scaleInPolicyProperty = ScaleInPolicyProperty.builder()
         .strategy("strategy")
         // the properties below are optional
         .cooldownInMinutes(123)
         .maximumStepSize(123)
         .build();
 

See Also: