interface InferenceExecutionConfigProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.SageMaker.Mixins.CfnModelPropsMixin.InferenceExecutionConfigProperty |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awssagemaker/mixins#CfnModelPropsMixin_InferenceExecutionConfigProperty |
Java | software.amazon.awscdk.mixins.preview.services.sagemaker.mixins.CfnModelPropsMixin.InferenceExecutionConfigProperty |
Python | aws_cdk.mixins_preview.aws_sagemaker.mixins.CfnModelPropsMixin.InferenceExecutionConfigProperty |
TypeScript | @aws-cdk/mixins-preview » aws_sagemaker » mixins » CfnModelPropsMixin » 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 { mixins as sagemaker_mixins } from '@aws-cdk/mixins-preview/aws-sagemaker';
const inferenceExecutionConfigProperty: sagemaker_mixins.CfnModelPropsMixin.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
(optional)
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