interface ScheduledUpdateConfigProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.SageMaker.Mixins.CfnClusterPropsMixin.ScheduledUpdateConfigProperty |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awssagemaker/mixins#CfnClusterPropsMixin_ScheduledUpdateConfigProperty |
Java | software.amazon.awscdk.mixins.preview.services.sagemaker.mixins.CfnClusterPropsMixin.ScheduledUpdateConfigProperty |
Python | aws_cdk.mixins_preview.aws_sagemaker.mixins.CfnClusterPropsMixin.ScheduledUpdateConfigProperty |
TypeScript | @aws-cdk/mixins-preview » aws_sagemaker » mixins » CfnClusterPropsMixin » ScheduledUpdateConfigProperty |
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 { mixins as sagemaker_mixins } from '@aws-cdk/mixins-preview/aws-sagemaker';
const scheduledUpdateConfigProperty: sagemaker_mixins.CfnClusterPropsMixin.ScheduledUpdateConfigProperty = {
deploymentConfig: {
autoRollbackConfiguration: [{
alarmName: 'alarmName',
}],
rollingUpdatePolicy: {
maximumBatchSize: {
type: 'type',
value: 123,
},
rollbackMaximumBatchSize: {
type: 'type',
value: 123,
},
},
waitIntervalInSeconds: 123,
},
scheduleExpression: 'scheduleExpression',
};
Properties
| Name | Type | Description |
|---|---|---|
| deployment | IResolvable | Deployment | The configuration to use when updating the AMI versions. |
| schedule | string | A cron expression that specifies the schedule that SageMaker follows when updating the AMI. |
deploymentConfig?
Type:
IResolvable | Deployment
(optional)
The configuration to use when updating the AMI versions.
scheduleExpression?
Type:
string
(optional)
A cron expression that specifies the schedule that SageMaker follows when updating the AMI.

.NET
Go
Java
Python
TypeScript