interface AutoRollbackConfigProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.SageMaker.Mixins.CfnEndpointPropsMixin.AutoRollbackConfigProperty |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awssagemaker/mixins#CfnEndpointPropsMixin_AutoRollbackConfigProperty |
Java | software.amazon.awscdk.mixins.preview.services.sagemaker.mixins.CfnEndpointPropsMixin.AutoRollbackConfigProperty |
Python | aws_cdk.mixins_preview.aws_sagemaker.mixins.CfnEndpointPropsMixin.AutoRollbackConfigProperty |
TypeScript | @aws-cdk/mixins-preview » aws_sagemaker » mixins » CfnEndpointPropsMixin » AutoRollbackConfigProperty |
Automatic rollback configuration for handling endpoint deployment failures and recovery.
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 autoRollbackConfigProperty: sagemaker_mixins.CfnEndpointPropsMixin.AutoRollbackConfigProperty = {
alarms: [{
alarmName: 'alarmName',
}],
};
Properties
| Name | Type | Description |
|---|---|---|
| alarms? | IResolvable | (IResolvable | Alarm)[] | List of CloudWatch alarms in your account that are configured to monitor metrics on an endpoint. |
alarms?
Type:
IResolvable | (IResolvable | Alarm)[]
(optional)
List of CloudWatch alarms in your account that are configured to monitor metrics on an endpoint.
If any alarms are tripped during a deployment, SageMaker rolls back the deployment.

.NET
Go
Java
Python
TypeScript