Interface CfnEndpoint.RollingUpdatePolicyProperty

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

@Stability(Stable) public static interface CfnEndpoint.RollingUpdatePolicyProperty extends software.amazon.jsii.JsiiSerializable
Specifies a rolling deployment strategy for updating a SageMaker endpoint.

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.*;
 RollingUpdatePolicyProperty rollingUpdatePolicyProperty = RollingUpdatePolicyProperty.builder()
         .maximumBatchSize(CapacitySizeProperty.builder()
                 .type("type")
                 .value(123)
                 .build())
         .waitIntervalInSeconds(123)
         // the properties below are optional
         .maximumExecutionTimeoutInSeconds(123)
         .rollbackMaximumBatchSize(CapacitySizeProperty.builder()
                 .type("type")
                 .value(123)
                 .build())
         .build();
 

See Also: