interface AsyncInferenceNotificationConfigProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.AWS.Sagemaker.CfnEndpointConfig.AsyncInferenceNotificationConfigProperty |
Java | software.amazon.awscdk.services.sagemaker.CfnEndpointConfig.AsyncInferenceNotificationConfigProperty |
Python | aws_cdk.aws_sagemaker.CfnEndpointConfig.AsyncInferenceNotificationConfigProperty |
TypeScript | @aws-cdk/aws-sagemaker » CfnEndpointConfig » AsyncInferenceNotificationConfigProperty |
Specifies the configuration for notifications of inference results for asynchronous inference.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import * as sagemaker from '@aws-cdk/aws-sagemaker';
const asyncInferenceNotificationConfigProperty: sagemaker.CfnEndpointConfig.AsyncInferenceNotificationConfigProperty = {
errorTopic: 'errorTopic',
includeInferenceResponseIn: ['includeInferenceResponseIn'],
successTopic: 'successTopic',
};
Properties
| Name | Type | Description |
|---|---|---|
| error | string | Amazon SNS topic to post a notification to when an inference fails. |
| include | string[] | CfnEndpointConfig.AsyncInferenceNotificationConfigProperty.IncludeInferenceResponseIn. |
| success | string | Amazon SNS topic to post a notification to when an inference completes successfully. |
errorTopic?
Type:
string
(optional)
Amazon SNS topic to post a notification to when an inference fails.
If no topic is provided, no notification is sent on failure.
includeInferenceResponseIn?
Type:
string[]
(optional)
CfnEndpointConfig.AsyncInferenceNotificationConfigProperty.IncludeInferenceResponseIn.
successTopic?
Type:
string
(optional)
Amazon SNS topic to post a notification to when an inference completes successfully.
If no topic is provided, no notification is sent on success.

.NET
Java
Python
TypeScript