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.
24499 24500 24501 24502 24503 |
# File 'lib/aws-sdk-sagemaker/types.rb', line 24499 class InferenceExecutionConfig < Struct.new( :mode) SENSITIVE = [] include Aws::Structure end |