Class: Aws::SageMaker::Types::Phase
- Inherits:
-
Struct
- Object
- Struct
- Aws::SageMaker::Types::Phase
- Defined in:
- gems/aws-sdk-sagemaker/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.
44235 44236 44237 44238 44239 44240 44241 |
# File 'gems/aws-sdk-sagemaker/lib/aws-sdk-sagemaker/types.rb', line 44235 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.
44235 44236 44237 44238 44239 44240 44241 |
# File 'gems/aws-sdk-sagemaker/lib/aws-sdk-sagemaker/types.rb', line 44235 class Phase < Struct.new( :initial_number_of_users, :spawn_rate, :duration_in_seconds) SENSITIVE = [] include Aws::Structure end |
#spawn_rate ⇒ Integer
Specified how many new users to spawn in a minute.
44235 44236 44237 44238 44239 44240 44241 |
# File 'gems/aws-sdk-sagemaker/lib/aws-sdk-sagemaker/types.rb', line 44235 class Phase < Struct.new( :initial_number_of_users, :spawn_rate, :duration_in_seconds) SENSITIVE = [] include Aws::Structure end |