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
Note:
When making an API call, you may pass Phase data as a hash:
{
initial_number_of_users: 1,
spawn_rate: 1,
duration_in_seconds: 1,
}
Defines the traffic pattern.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#duration_in_seconds ⇒ Integer
Specifies how long 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 traffic phase should be.
32707 32708 32709 32710 32711 32712 32713 |
# File 'gems/aws-sdk-sagemaker/lib/aws-sdk-sagemaker/types.rb', line 32707 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.
32707 32708 32709 32710 32711 32712 32713 |
# File 'gems/aws-sdk-sagemaker/lib/aws-sdk-sagemaker/types.rb', line 32707 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.
32707 32708 32709 32710 32711 32712 32713 |
# File 'gems/aws-sdk-sagemaker/lib/aws-sdk-sagemaker/types.rb', line 32707 class Phase < Struct.new( :initial_number_of_users, :spawn_rate, :duration_in_seconds) SENSITIVE = [] include Aws::Structure end |