aws-cdk-lib.aws_sagemaker.CfnEndpointConfig.AsyncInferenceOutputConfigProperty

interface AsyncInferenceOutputConfigProperty

LanguageType name
.NETAmazon.CDK.AWS.Sagemaker.CfnEndpointConfig.AsyncInferenceOutputConfigProperty
Gogithub.com/aws/aws-cdk-go/awscdk/v2/awssagemaker#CfnEndpointConfig_AsyncInferenceOutputConfigProperty
Javasoftware.amazon.awscdk.services.sagemaker.CfnEndpointConfig.AsyncInferenceOutputConfigProperty
Pythonaws_cdk.aws_sagemaker.CfnEndpointConfig.AsyncInferenceOutputConfigProperty
TypeScript aws-cdk-lib » aws_sagemaker » CfnEndpointConfig » AsyncInferenceOutputConfigProperty

Specifies the configuration for asynchronous inference invocation outputs.

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 asyncInferenceOutputConfigProperty: sagemaker.CfnEndpointConfig.AsyncInferenceOutputConfigProperty = {
  kmsKeyId: 'kmsKeyId',
  notificationConfig: {
    errorTopic: 'errorTopic',
    includeInferenceResponseIn: ['includeInferenceResponseIn'],
    successTopic: 'successTopic',
  },
  s3FailurePath: 's3FailurePath',
  s3OutputPath: 's3OutputPath',
};

Properties

NameTypeDescription
kmsKeyId?stringThe AWS Key Management Service ( AWS KMS) key that Amazon SageMaker uses to encrypt the asynchronous inference output in Amazon S3.
notificationConfig?IResolvable | AsyncInferenceNotificationConfigPropertySpecifies the configuration for notifications of inference results for asynchronous inference.
s3FailurePath?stringCfnEndpointConfig.AsyncInferenceOutputConfigProperty.S3FailurePath.
s3OutputPath?stringThe Amazon S3 location to upload inference responses to.

kmsKeyId?

Type: string (optional)

The AWS Key Management Service ( AWS KMS) key that Amazon SageMaker uses to encrypt the asynchronous inference output in Amazon S3.


notificationConfig?

Type: IResolvable | AsyncInferenceNotificationConfigProperty (optional)

Specifies the configuration for notifications of inference results for asynchronous inference.


s3FailurePath?

Type: string (optional)

CfnEndpointConfig.AsyncInferenceOutputConfigProperty.S3FailurePath.


s3OutputPath?

Type: string (optional)

The Amazon S3 location to upload inference responses to.