Class: Aws::SageMaker::Types::ShadowModelVariantConfig

Inherits:
Struct
  • Object
show all
Includes:
Aws::Structure
Defined in:
lib/aws-sdk-sagemaker/types.rb

Overview

The name and sampling percentage of a shadow variant.

Constant Summary collapse

SENSITIVE =
[]

Instance Attribute Summary collapse

Instance Attribute Details

#sampling_percentageInteger

The percentage of inference requests that Amazon SageMaker replicates from the production variant to the shadow variant.

Returns:

  • (Integer)


38980
38981
38982
38983
38984
38985
# File 'lib/aws-sdk-sagemaker/types.rb', line 38980

class ShadowModelVariantConfig < Struct.new(
  :shadow_model_variant_name,
  :sampling_percentage)
  SENSITIVE = []
  include Aws::Structure
end

#shadow_model_variant_nameString

The name of the shadow variant.

Returns:

  • (String)


38980
38981
38982
38983
38984
38985
# File 'lib/aws-sdk-sagemaker/types.rb', line 38980

class ShadowModelVariantConfig < Struct.new(
  :shadow_model_variant_name,
  :sampling_percentage)
  SENSITIVE = []
  include Aws::Structure
end