Interface CfnModel.InferenceExecutionConfigProperty
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnModel.InferenceExecutionConfigProperty.Jsii$Proxy
- Enclosing class:
CfnModel
@Stability(Stable)
public static interface CfnModel.InferenceExecutionConfigProperty
extends software.amazon.jsii.JsiiSerializable
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 software.amazon.awscdk.services.sagemaker.*;
InferenceExecutionConfigProperty inferenceExecutionConfigProperty = InferenceExecutionConfigProperty.builder()
.mode("mode")
.build();
- See Also:
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classA builder forCfnModel.InferenceExecutionConfigPropertystatic final classAn implementation forCfnModel.InferenceExecutionConfigProperty -
Method Summary
Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getMode
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.
- See Also:
-
builder
-