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:
-
Nested Class Summary
Modifier and TypeInterfaceDescriptionstatic final class
A builder forCfnEndpoint.AutoRollbackConfigProperty
static final class
An implementation forCfnEndpoint.AutoRollbackConfigProperty
-
Method Summary
Modifier and TypeMethodDescriptionbuilder()
List of CloudWatch alarms in your account that are configured to monitor metrics on an endpoint.Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getAlarms
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.
- See Also:
-
builder
-