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`.
36278 36279 36280 36281 36282 36283 36284 |
# File 'lib/aws-sdk-sagemaker/types.rb', line 36278 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.
36278 36279 36280 36281 36282 36283 36284 |
# File 'lib/aws-sdk-sagemaker/types.rb', line 36278 class Phase < Struct.new( :initial_number_of_users, :spawn_rate, :duration_in_seconds) SENSITIVE = [] include Aws::Structure end |