interface AutoRollbackConfigProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.CfnPropertyMixins.AWS.SageMaker.CfnEndpointPropsMixin.AutoRollbackConfigProperty |
Go | github.com/aws/aws-cdk-go/awscdkcfnpropertymixins/v2/awssagemaker#CfnEndpointPropsMixin_AutoRollbackConfigProperty |
Java | software.amazon.awscdk.cfnpropertymixins.services.sagemaker.CfnEndpointPropsMixin.AutoRollbackConfigProperty |
Python | aws_cdk.cfn_property_mixins.aws_sagemaker.CfnEndpointPropsMixin.AutoRollbackConfigProperty |
TypeScript | @aws-cdk/cfn-property-mixins » aws_sagemaker » 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 { aws_sagemaker as sagemaker } from '@aws-cdk/cfn-property-mixins';
const autoRollbackConfigProperty: sagemaker.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