public static interface CfnEndpointConfig.AsyncInferenceNotificationConfigProperty
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 java.lang.String |
getErrorTopic()
Amazon SNS topic to post a notification to when an inference fails.
|
default java.lang.String |
getSuccessTopic()
Amazon SNS topic to post a notification to when an inference completes successfully.
|
default java.lang.String getErrorTopic()
If no topic is provided, no notification is sent on failure.
default java.lang.String getSuccessTopic()
If no topic is provided, no notification is sent on success.