interface AsyncInferenceConfigProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.SageMaker.Mixins.CfnEndpointConfigPropsMixin.AsyncInferenceConfigProperty |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awssagemaker/mixins#CfnEndpointConfigPropsMixin_AsyncInferenceConfigProperty |
Java | software.amazon.awscdk.mixins.preview.services.sagemaker.mixins.CfnEndpointConfigPropsMixin.AsyncInferenceConfigProperty |
Python | aws_cdk.mixins_preview.aws_sagemaker.mixins.CfnEndpointConfigPropsMixin.AsyncInferenceConfigProperty |
TypeScript | @aws-cdk/mixins-preview » aws_sagemaker » mixins » CfnEndpointConfigPropsMixin » 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 { mixins as sagemaker_mixins } from '@aws-cdk/mixins-preview/aws-sagemaker';
const asyncInferenceConfigProperty: sagemaker_mixins.CfnEndpointConfigPropsMixin.AsyncInferenceConfigProperty = {
clientConfig: {
maxConcurrentInvocationsPerInstance: 123,
},
outputConfig: {
kmsKeyId: 'kmsKeyId',
notificationConfig: {
errorTopic: 'errorTopic',
includeInferenceResponseIn: ['includeInferenceResponseIn'],
successTopic: 'successTopic',
},
s3FailurePath: 's3FailurePath',
s3OutputPath: 's3OutputPath',
},
};
Properties
| Name | Type | Description |
|---|---|---|
| client | IResolvable | Async | Configures the behavior of the client used by SageMaker to interact with the model container during asynchronous inference. |
| output | 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.
outputConfig?
Type:
IResolvable | Async
(optional)
Specifies the configuration for asynchronous inference invocation outputs.

.NET
Go
Java
Python
TypeScript