Interface CfnClusterPropsMixin.ScheduledUpdateConfigProperty
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnClusterPropsMixin.ScheduledUpdateConfigProperty.Jsii$Proxy
- Enclosing class:
CfnClusterPropsMixin
@Stability(Stable)
public static interface CfnClusterPropsMixin.ScheduledUpdateConfigProperty
extends software.amazon.jsii.JsiiSerializable
The configuration object of the schedule that SageMaker follows when updating the AMI.
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.*;
ScheduledUpdateConfigProperty scheduledUpdateConfigProperty = ScheduledUpdateConfigProperty.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())
.scheduleExpression("scheduleExpression")
.build();
- See Also:
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classA builder forCfnClusterPropsMixin.ScheduledUpdateConfigPropertystatic final classAn implementation forCfnClusterPropsMixin.ScheduledUpdateConfigProperty -
Method Summary
Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getDeploymentConfig
The configuration to use when updating the AMI versions.Returns union: either
IResolvableorCfnClusterPropsMixin.DeploymentConfigProperty- See Also:
-
getScheduleExpression
A cron expression that specifies the schedule that SageMaker follows when updating the AMI.- See Also:
-
builder
-