interface InferenceExecutionConfigProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.AWS.Sagemaker.CfnModel.InferenceExecutionConfigProperty |
Java | software.amazon.awscdk.services.sagemaker.CfnModel.InferenceExecutionConfigProperty |
Python | aws_cdk.aws_sagemaker.CfnModel.InferenceExecutionConfigProperty |
TypeScript | @aws-cdk/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 * as sagemaker from '@aws-cdk/aws-sagemaker';
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
Java
Python
TypeScript