interface ScheduledUpdateConfigProperty
Language | Type name |
---|---|
![]() | Amazon.CDK.AWS.Sagemaker.CfnCluster.ScheduledUpdateConfigProperty |
![]() | github.com/aws/aws-cdk-go/awscdk/v2/awssagemaker#CfnCluster_ScheduledUpdateConfigProperty |
![]() | software.amazon.awscdk.services.sagemaker.CfnCluster.ScheduledUpdateConfigProperty |
![]() | aws_cdk.aws_sagemaker.CfnCluster.ScheduledUpdateConfigProperty |
![]() | aws-cdk-lib » aws_sagemaker » CfnCluster » 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 { aws_sagemaker as sagemaker } from 'aws-cdk-lib';
const scheduledUpdateConfigProperty: sagemaker.CfnCluster.ScheduledUpdateConfigProperty = {
scheduleExpression: 'scheduleExpression',
// the properties below are optional
deploymentConfig: {
autoRollbackConfiguration: [{
alarmName: 'alarmName',
}],
rollingUpdatePolicy: {
maximumBatchSize: {
type: 'type',
value: 123,
},
// the properties below are optional
rollbackMaximumBatchSize: {
type: 'type',
value: 123,
},
},
waitIntervalInSeconds: 123,
},
};
Properties
Name | Type | Description |
---|---|---|
schedule | string | A cron expression that specifies the schedule that SageMaker follows when updating the AMI. |
deployment | IResolvable | Deployment | The configuration to use when updating the AMI versions. |
scheduleExpression
Type:
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.