aws-cdk-lib.aws_sagemaker.CfnEndpointConfig.AsyncInferenceNotificationConfigProperty
interface AsyncInferenceNotificationConfigProperty
Language | Type name |
---|---|
![]() | Amazon.CDK.AWS.Sagemaker.CfnEndpointConfig.AsyncInferenceNotificationConfigProperty |
![]() | github.com/aws/aws-cdk-go/awscdk/v2/awssagemaker#CfnEndpointConfig_AsyncInferenceNotificationConfigProperty |
![]() | software.amazon.awscdk.services.sagemaker.CfnEndpointConfig.AsyncInferenceNotificationConfigProperty |
![]() | aws_cdk.aws_sagemaker.CfnEndpointConfig.AsyncInferenceNotificationConfigProperty |
![]() | 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
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.