Class: Aws::SageMaker::Types::ShadowModeConfig
- Inherits:
-
Struct
- Object
- Struct
- Aws::SageMaker::Types::ShadowModeConfig
- Includes:
- Aws::Structure
- Defined in:
- lib/aws-sdk-sagemaker/types.rb
Overview
The configuration of ‘ShadowMode` inference experiment type, which specifies a production variant to take all the inference requests, and a shadow variant to which Amazon SageMaker replicates a percentage of the inference requests. For the shadow variant it also specifies the percentage of requests that Amazon SageMaker replicates.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#shadow_model_variants ⇒ Array<Types::ShadowModelVariantConfig>
List of shadow variant configurations.
-
#source_model_variant_name ⇒ String
The name of the production variant, which takes all the inference requests.
Instance Attribute Details
#shadow_model_variants ⇒ Array<Types::ShadowModelVariantConfig>
List of shadow variant configurations.
40995 40996 40997 40998 40999 41000 |
# File 'lib/aws-sdk-sagemaker/types.rb', line 40995 class ShadowModeConfig < Struct.new( :source_model_variant_name, :shadow_model_variants) SENSITIVE = [] include Aws::Structure end |
#source_model_variant_name ⇒ String
The name of the production variant, which takes all the inference requests.
40995 40996 40997 40998 40999 41000 |
# File 'lib/aws-sdk-sagemaker/types.rb', line 40995 class ShadowModeConfig < Struct.new( :source_model_variant_name, :shadow_model_variants) SENSITIVE = [] include Aws::Structure end |