Class: Aws::ECS::Types::DaemonDeploymentConfiguration
- Inherits:
-
Struct
- Object
- Struct
- Aws::ECS::Types::DaemonDeploymentConfiguration
- Defined in:
- gems/aws-sdk-ecs/lib/aws-sdk-ecs/types.rb
Overview
Optional deployment parameters that control how a daemon rolls out updates across container instances.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#alarms ⇒ Types::DaemonAlarmConfiguration
The CloudWatch alarm configuration for the daemon deployment.
-
#bake_time_in_minutes ⇒ Integer
The amount of time (in minutes) to wait after a successful deployment step before proceeding.
-
#drain_percent ⇒ Float
The percentage of container instances to drain simultaneously during a daemon deployment.
Instance Attribute Details
#alarms ⇒ Types::DaemonAlarmConfiguration
The CloudWatch alarm configuration for the daemon deployment. When alarms are triggered during a deployment, the deployment can be automatically rolled back.
4428 4429 4430 4431 4432 4433 4434 |
# File 'gems/aws-sdk-ecs/lib/aws-sdk-ecs/types.rb', line 4428 class DaemonDeploymentConfiguration < Struct.new( :drain_percent, :alarms, :bake_time_in_minutes) SENSITIVE = [] include Aws::Structure end |
#bake_time_in_minutes ⇒ Integer
The amount of time (in minutes) to wait after a successful deployment step before proceeding. This allows time to monitor for issues before continuing. The default value is 0.
4428 4429 4430 4431 4432 4433 4434 |
# File 'gems/aws-sdk-ecs/lib/aws-sdk-ecs/types.rb', line 4428 class DaemonDeploymentConfiguration < Struct.new( :drain_percent, :alarms, :bake_time_in_minutes) SENSITIVE = [] include Aws::Structure end |
#drain_percent ⇒ Float
The percentage of container instances to drain simultaneously during a daemon deployment. Valid values are between 0.0 and 100.0.
4428 4429 4430 4431 4432 4433 4434 |
# File 'gems/aws-sdk-ecs/lib/aws-sdk-ecs/types.rb', line 4428 class DaemonDeploymentConfiguration < Struct.new( :drain_percent, :alarms, :bake_time_in_minutes) SENSITIVE = [] include Aws::Structure end |