aws-cdk-lib.aws_sagemaker.CfnModel.InferenceExecutionConfigProperty

interface InferenceExecutionConfigProperty

LanguageType name
.NETAmazon.CDK.AWS.Sagemaker.CfnModel.InferenceExecutionConfigProperty
Gogithub.com/aws/aws-cdk-go/awscdk/v2/awssagemaker#CfnModel_InferenceExecutionConfigProperty
Javasoftware.amazon.awscdk.services.sagemaker.CfnModel.InferenceExecutionConfigProperty
Pythonaws_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

NameTypeDescription
modestringHow 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.