Interface CfnEndpoint.AutoRollbackConfigProperty

All Superinterfaces:
software.amazon.jsii.JsiiSerializable
All Known Implementing Classes:
CfnEndpoint.AutoRollbackConfigProperty.Jsii$Proxy
Enclosing class:
CfnEndpoint

@Stability(Stable) public static interface CfnEndpoint.AutoRollbackConfigProperty extends software.amazon.jsii.JsiiSerializable
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 software.amazon.awscdk.services.sagemaker.*;
 AutoRollbackConfigProperty autoRollbackConfigProperty = AutoRollbackConfigProperty.builder()
         .alarms(List.of(AlarmProperty.builder()
                 .alarmName("alarmName")
                 .build()))
         .build();
 

See Also: