Interface CfnClusterPropsMixin.AutoPatchConfigProperty

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

@Stability(Stable) public static interface CfnClusterPropsMixin.AutoPatchConfigProperty extends software.amazon.jsii.JsiiSerializable
The configuration for automatic patching of the instance group.

Enables workload-aware, patch-level AMI updates.

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.*;
 AutoPatchConfigProperty autoPatchConfigProperty = AutoPatchConfigProperty.builder()
         .deploymentConfig(DeploymentConfigProperty.builder()
                 .autoRollbackConfiguration(List.of(AlarmDetailsProperty.builder()
                         .alarmName("alarmName")
                         .build()))
                 .rollingUpdatePolicy(RollingUpdatePolicyProperty.builder()
                         .maximumBatchSize(CapacitySizeConfigProperty.builder()
                                 .type("type")
                                 .value(123)
                                 .build())
                         .rollbackMaximumBatchSize(CapacitySizeConfigProperty.builder()
                                 .type("type")
                                 .value(123)
                                 .build())
                         .build())
                 .waitIntervalInSeconds(123)
                 .build())
         .patchingStrategy("patchingStrategy")
         .patchSchedule(PatchScheduleProperty.builder()
                 .nextPatchDate("nextPatchDate")
                 .build())
         .build();
 

See Also: