interface AsyncInferenceConfigProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.AWS.Sagemaker.CfnEndpointConfig.AsyncInferenceConfigProperty |
Java | software.amazon.awscdk.services.sagemaker.CfnEndpointConfig.AsyncInferenceConfigProperty |
Python | aws_cdk.aws_sagemaker.CfnEndpointConfig.AsyncInferenceConfigProperty |
TypeScript | @aws-cdk/aws-sagemaker » CfnEndpointConfig » AsyncInferenceConfigProperty |
Specifies configuration for how an endpoint performs 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 asyncInferenceConfigProperty: sagemaker.CfnEndpointConfig.AsyncInferenceConfigProperty = {
outputConfig: {
kmsKeyId: 'kmsKeyId',
notificationConfig: {
errorTopic: 'errorTopic',
includeInferenceResponseIn: ['includeInferenceResponseIn'],
successTopic: 'successTopic',
},
s3FailurePath: 's3FailurePath',
s3OutputPath: 's3OutputPath',
},
// the properties below are optional
clientConfig: {
maxConcurrentInvocationsPerInstance: 123,
},
};
Properties
| Name | Type | Description |
|---|---|---|
| output | IResolvable | Async | Specifies the configuration for asynchronous inference invocation outputs. |
| client | IResolvable | Async | Configures the behavior of the client used by SageMaker to interact with the model container during asynchronous inference. |
outputConfig
Type:
IResolvable | Async
Specifies the configuration for asynchronous inference invocation outputs.
clientConfig?
Type:
IResolvable | Async
(optional)
Configures the behavior of the client used by SageMaker to interact with the model container during asynchronous inference.

.NET
Java
Python
TypeScript