Class: Aws::SageMaker::Types::ScalingPolicyObjective
- Inherits:
 - 
      Struct
      
        
- Object
 - Struct
 - Aws::SageMaker::Types::ScalingPolicyObjective
 
 
- Includes:
 - Aws::Structure
 
- Defined in:
 - lib/aws-sdk-sagemaker/types.rb
 
Overview
An object where you specify the anticipated traffic pattern for an endpoint.
Constant Summary collapse
- SENSITIVE =
 []
Instance Attribute Summary collapse
- 
  
    
      #max_invocations_per_minute  ⇒ Integer 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
The maximum number of expected requests to your endpoint per minute.
 - 
  
    
      #min_invocations_per_minute  ⇒ Integer 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
The minimum number of expected requests to your endpoint per minute.
 
Instance Attribute Details
#max_invocations_per_minute ⇒ Integer
The maximum number of expected requests to your endpoint per minute.
      42061 42062 42063 42064 42065 42066  | 
    
      # File 'lib/aws-sdk-sagemaker/types.rb', line 42061 class ScalingPolicyObjective < Struct.new( :min_invocations_per_minute, :max_invocations_per_minute) SENSITIVE = [] include Aws::Structure end  | 
  
#min_invocations_per_minute ⇒ Integer
The minimum number of expected requests to your endpoint per minute.
      42061 42062 42063 42064 42065 42066  | 
    
      # File 'lib/aws-sdk-sagemaker/types.rb', line 42061 class ScalingPolicyObjective < Struct.new( :min_invocations_per_minute, :max_invocations_per_minute) SENSITIVE = [] include Aws::Structure end  |