interface InferenceExecutionConfigProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.AWS.Sagemaker.CfnModel.InferenceExecutionConfigProperty |
Go | github.com/aws/aws-cdk-go/awscdk/v2/awssagemaker#CfnModel_InferenceExecutionConfigProperty |
Java | software.amazon.awscdk.services.sagemaker.CfnModel.InferenceExecutionConfigProperty |
Python | aws_cdk.aws_sagemaker.CfnModel.InferenceExecutionConfigProperty |
TypeScript | aws-cdk-lib » aws_sagemaker » CfnModel » InferenceExecutionConfigProperty |
Specifies details about how containers in a multi-container endpoint are run.
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 inferenceExecutionConfigProperty: sagemaker.CfnModel.InferenceExecutionConfigProperty = {
mode: 'mode',
};
Properties
| Name | Type | Description |
|---|---|---|
| mode | string | How containers in a multi-container are run. The following values are valid. |
mode
Type:
string
How containers in a multi-container are run. The following values are valid.
Serial- Containers run as a serial pipeline.Direct- Only the individual container that you specify is run.

.NET
Go
Java
Python
TypeScript