Class: Aws::SageMaker::Types::Phase
- Inherits:
 - 
      Struct
      
        
- Object
 - Struct
 - Aws::SageMaker::Types::Phase
 
 
- Includes:
 - Aws::Structure
 
- Defined in:
 - lib/aws-sdk-sagemaker/types.rb
 
Overview
Defines the traffic pattern.
Constant Summary collapse
- SENSITIVE =
 []
Instance Attribute Summary collapse
- 
  
    
      #duration_in_seconds  ⇒ Integer 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
Specifies how long a traffic phase should be.
 - 
  
    
      #initial_number_of_users  ⇒ Integer 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
Specifies how many concurrent users to start with.
 - 
  
    
      #spawn_rate  ⇒ Integer 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
Specified how many new users to spawn in a minute.
 
Instance Attribute Details
#duration_in_seconds ⇒ Integer
Specifies how long a traffic phase should be. For custom load tests, the value should be between 120 and 3600. This value should not exceed ‘JobDurationInSeconds`.
      37849 37850 37851 37852 37853 37854 37855  | 
    
      # File 'lib/aws-sdk-sagemaker/types.rb', line 37849 class Phase < Struct.new( :initial_number_of_users, :spawn_rate, :duration_in_seconds) SENSITIVE = [] include Aws::Structure end  | 
  
#initial_number_of_users ⇒ Integer
Specifies how many concurrent users to start with. The value should be between 1 and 3.
      37849 37850 37851 37852 37853 37854 37855  | 
    
      # File 'lib/aws-sdk-sagemaker/types.rb', line 37849 class Phase < Struct.new( :initial_number_of_users, :spawn_rate, :duration_in_seconds) SENSITIVE = [] include Aws::Structure end  |