Class: Aws::SageMaker::Types::VariantProperty
- Inherits:
- 
      Struct
      
        - Object
- Struct
- Aws::SageMaker::Types::VariantProperty
 
- Defined in:
- gems/aws-sdk-sagemaker/lib/aws-sdk-sagemaker/types.rb
Overview
Specifies a production variant property type for an Endpoint.
If you are updating an endpoint with the RetainAllVariantProperties
option of UpdateEndpointInput set to true, the
VariantProperty objects listed in the
ExcludeRetainedVariantProperties parameter of
UpdateEndpointInput override the existing variant properties of
the endpoint.
Constant Summary collapse
- SENSITIVE =
- [] 
Instance Attribute Summary collapse
- 
  
    
      #variant_property_type  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    The type of variant property. 
Instance Attribute Details
#variant_property_type ⇒ String
The type of variant property. The supported values are:
- DesiredInstanceCount: Overrides the existing variant instance counts using the- InitialInstanceCountvalues in the- ProductionVariantsof CreateEndpointConfig.
- DesiredWeight: Overrides the existing variant weights using the- InitialVariantWeightvalues in the- ProductionVariantsof CreateEndpointConfig.
- DataCaptureConfig: (Not currently supported.)
| 53335 53336 53337 53338 53339 | # File 'gems/aws-sdk-sagemaker/lib/aws-sdk-sagemaker/types.rb', line 53335 class VariantProperty < Struct.new( :variant_property_type) SENSITIVE = [] include Aws::Structure end |