Class: Aws::SageMaker::Types::InferenceExecutionConfig
- Inherits:
-
Struct
- Object
- Struct
- Aws::SageMaker::Types::InferenceExecutionConfig
- Includes:
- Aws::Structure
- Defined in:
- lib/aws-sdk-sagemaker/types.rb
Overview
Specifies details about how containers in a multi-container endpoint are run.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#mode ⇒ String
How containers in a multi-container are run.
Instance Attribute Details
#mode ⇒ 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.
23040 23041 23042 23043 23044 |
# File 'lib/aws-sdk-sagemaker/types.rb', line 23040 class InferenceExecutionConfig < Struct.new( :mode) SENSITIVE = [] include Aws::Structure end |