@Stability(value=Stable)
public static interface CfnEndpointConfig.AsyncInferenceNotificationConfigProperty
extends software.amazon.jsii.JsiiSerializable
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.*;
AsyncInferenceNotificationConfigProperty asyncInferenceNotificationConfigProperty = AsyncInferenceNotificationConfigProperty.builder()
.errorTopic("errorTopic")
.successTopic("successTopic")
.build();
| Modifier and Type | Interface and Description |
|---|---|
static class |
CfnEndpointConfig.AsyncInferenceNotificationConfigProperty.Builder
|
static class |
CfnEndpointConfig.AsyncInferenceNotificationConfigProperty.Jsii$Proxy
An implementation for
CfnEndpointConfig.AsyncInferenceNotificationConfigProperty |
| Modifier and Type | Method and Description |
|---|---|
static CfnEndpointConfig.AsyncInferenceNotificationConfigProperty.Builder |
builder() |
default String |
getErrorTopic()
Amazon SNS topic to post a notification to when an inference fails.
|
default String |
getSuccessTopic()
Amazon SNS topic to post a notification to when an inference completes successfully.
|
@Stability(value=Stable) @Nullable default String getErrorTopic()
If no topic is provided, no notification is sent on failure.
@Stability(value=Stable) @Nullable default String getSuccessTopic()
If no topic is provided, no notification is sent on success.
@Stability(value=Stable) static CfnEndpointConfig.AsyncInferenceNotificationConfigProperty.Builder builder()
Copyright © 2022. All rights reserved.