Class: Aws::SageMaker::Types::ModelLatencyThreshold
- Inherits:
 - 
      Struct
      
        
- Object
 - Struct
 - Aws::SageMaker::Types::ModelLatencyThreshold
 
 
- Includes:
 - Aws::Structure
 
- Defined in:
 - lib/aws-sdk-sagemaker/types.rb
 
Overview
The model latency threshold.
Constant Summary collapse
- SENSITIVE =
 []
Instance Attribute Summary collapse
- 
  
    
      #percentile  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
The model latency percentile threshold.
 - 
  
    
      #value_in_milliseconds  ⇒ Integer 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
The model latency percentile value in milliseconds.
 
Instance Attribute Details
#percentile ⇒ String
The model latency percentile threshold. Acceptable values are ‘P95` and `P99`. For custom load tests, specify the value as `P95`.
      34589 34590 34591 34592 34593 34594  | 
    
      # File 'lib/aws-sdk-sagemaker/types.rb', line 34589 class ModelLatencyThreshold < Struct.new( :percentile, :value_in_milliseconds) SENSITIVE = [] include Aws::Structure end  | 
  
#value_in_milliseconds ⇒ Integer
The model latency percentile value in milliseconds.
      34589 34590 34591 34592 34593 34594  | 
    
      # File 'lib/aws-sdk-sagemaker/types.rb', line 34589 class ModelLatencyThreshold < Struct.new( :percentile, :value_in_milliseconds) SENSITIVE = [] include Aws::Structure end  |