interface AutoRollbackConfigProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.AWS.Sagemaker.CfnEndpoint.AutoRollbackConfigProperty |
Java | software.amazon.awscdk.services.sagemaker.CfnEndpoint.AutoRollbackConfigProperty |
Python | aws_cdk.aws_sagemaker.CfnEndpoint.AutoRollbackConfigProperty |
TypeScript | @aws-cdk/aws-sagemaker » CfnEndpoint » 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 * as sagemaker from '@aws-cdk/aws-sagemaker';
const autoRollbackConfigProperty: sagemaker.CfnEndpoint.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[]
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
Java
Python
TypeScript