Class: Aws::CodeDeploy::Types::BlueInstanceTerminationOption
- Inherits:
-
Struct
- Object
- Struct
- Aws::CodeDeploy::Types::BlueInstanceTerminationOption
- Defined in:
- gems/aws-sdk-codedeploy/lib/aws-sdk-codedeploy/types.rb
Overview
Information about whether instances in the original environment are
terminated when a blue/green deployment is successful.
BlueInstanceTerminationOption
does not apply to Lambda deployments.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#action ⇒ String
The action to take on instances in the original environment after a successful blue/green deployment.
-
#termination_wait_time_in_minutes ⇒ Integer
For an Amazon EC2 deployment, the number of minutes to wait after a successful blue/green deployment before terminating instances from the original environment.
Instance Attribute Details
#action ⇒ String
The action to take on instances in the original environment after a successful blue/green deployment.
TERMINATE
: Instances are terminated after a specified wait time.KEEP_ALIVE
: Instances are left running after they are deregistered from the load balancer and removed from the deployment group.
607 608 609 610 611 612 |
# File 'gems/aws-sdk-codedeploy/lib/aws-sdk-codedeploy/types.rb', line 607 class BlueInstanceTerminationOption < Struct.new( :action, :termination_wait_time_in_minutes) SENSITIVE = [] include Aws::Structure end |
#termination_wait_time_in_minutes ⇒ Integer
For an Amazon EC2 deployment, the number of minutes to wait after a successful blue/green deployment before terminating instances from the original environment.
For an Amazon ECS deployment, the number of minutes before deleting the original (blue) task set. During an Amazon ECS deployment, CodeDeploy shifts traffic from the original (blue) task set to a replacement (green) task set.
The maximum setting is 2880 minutes (2 days).
607 608 609 610 611 612 |
# File 'gems/aws-sdk-codedeploy/lib/aws-sdk-codedeploy/types.rb', line 607 class BlueInstanceTerminationOption < Struct.new( :action, :termination_wait_time_in_minutes) SENSITIVE = [] include Aws::Structure end |