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.
24422 24423 24424 24425 24426 |
# File 'lib/aws-sdk-sagemaker/types.rb', line 24422 class InferenceExecutionConfig < Struct.new( :mode) SENSITIVE = [] include Aws::Structure end |