aws-cdk-lib.aws_sagemaker.CfnEndpointConfig.AsyncInferenceNotificationConfigProperty

interface AsyncInferenceNotificationConfigProperty

LanguageType name
.NETAmazon.CDK.AWS.Sagemaker.CfnEndpointConfig.AsyncInferenceNotificationConfigProperty
Gogithub.com/aws/aws-cdk-go/awscdk/v2/awssagemaker#CfnEndpointConfig_AsyncInferenceNotificationConfigProperty
Javasoftware.amazon.awscdk.services.sagemaker.CfnEndpointConfig.AsyncInferenceNotificationConfigProperty
Pythonaws_cdk.aws_sagemaker.CfnEndpointConfig.AsyncInferenceNotificationConfigProperty
TypeScript aws-cdk-lib » 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 { aws_sagemaker as sagemaker } from 'aws-cdk-lib';
const asyncInferenceNotificationConfigProperty: sagemaker.CfnEndpointConfig.AsyncInferenceNotificationConfigProperty = {
  errorTopic: 'errorTopic',
  includeInferenceResponseIn: ['includeInferenceResponseIn'],
  successTopic: 'successTopic',
};

Properties

NameTypeDescription
errorTopic?stringAmazon SNS topic to post a notification to when an inference fails.
includeInferenceResponseIn?string[]CfnEndpointConfig.AsyncInferenceNotificationConfigProperty.IncludeInferenceResponseIn.
successTopic?stringAmazon 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.