interface AsyncInferenceConfigProperty
Language | Type name |
---|---|
![]() | Amazon.CDK.AWS.Sagemaker.CfnEndpointConfig.AsyncInferenceConfigProperty |
![]() | github.com/aws/aws-cdk-go/awscdk/v2/awssagemaker#CfnEndpointConfig_AsyncInferenceConfigProperty |
![]() | software.amazon.awscdk.services.sagemaker.CfnEndpointConfig.AsyncInferenceConfigProperty |
![]() | aws_cdk.aws_sagemaker.CfnEndpointConfig.AsyncInferenceConfigProperty |
![]() | aws-cdk-lib » 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 { aws_sagemaker as sagemaker } from 'aws-cdk-lib';
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.