Class: Aws::ECS::Types::LinearConfiguration
- Inherits:
-
Struct
- Object
- Struct
- Aws::ECS::Types::LinearConfiguration
- Defined in:
- gems/aws-sdk-ecs/lib/aws-sdk-ecs/types.rb
Overview
Configuration for linear deployment strategy that shifts production
traffic in equal percentage increments with configurable wait times
between each step until 100% of traffic is shifted to the new service
revision. This is only valid when you run CreateService or
UpdateService with deploymentController set to ECS and a
deploymentConfiguration with a strategy set to LINEAR.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#step_bake_time_in_minutes ⇒ Integer
The amount of time in minutes to wait between each traffic shifting step during a linear deployment.
-
#step_percent ⇒ Float
The percentage of production traffic to shift in each step during a linear deployment.
Instance Attribute Details
#step_bake_time_in_minutes ⇒ Integer
The amount of time in minutes to wait between each traffic shifting step during a linear deployment. Valid values are 0 to 1440 minutes (24 hours). The default value is 6. This bake time is not applied after reaching 100 percent traffic.
7301 7302 7303 7304 7305 7306 |
# File 'gems/aws-sdk-ecs/lib/aws-sdk-ecs/types.rb', line 7301 class LinearConfiguration < Struct.new( :step_percent, :step_bake_time_in_minutes) SENSITIVE = [] include Aws::Structure end |
#step_percent ⇒ Float
The percentage of production traffic to shift in each step during a linear deployment. Valid values are multiples of 0.1 from 3.0 to 100.0. The default value is 10.0.
7301 7302 7303 7304 7305 7306 |
# File 'gems/aws-sdk-ecs/lib/aws-sdk-ecs/types.rb', line 7301 class LinearConfiguration < Struct.new( :step_percent, :step_bake_time_in_minutes) SENSITIVE = [] include Aws::Structure end |