Interface CfnEndpointPropsMixin.AutoRollbackConfigProperty

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

@Stability(Stable) public static interface CfnEndpointPropsMixin.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.cfnpropertymixins.services.sagemaker.*;
 AutoRollbackConfigProperty autoRollbackConfigProperty = AutoRollbackConfigProperty.builder()
         .alarms(List.of(AlarmProperty.builder()
                 .alarmName("alarmName")
                 .build()))
         .build();
 

See Also: