Class: Aws::CodeDeploy::Types::ContinueDeploymentInput
- Inherits:
-
Struct
- Object
- Struct
- Aws::CodeDeploy::Types::ContinueDeploymentInput
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-codedeploy/types.rb
Overview
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#deployment_id ⇒ String
The unique ID of a blue/green deployment for which you want to start rerouting traffic to the replacement environment.
-
#deployment_wait_type ⇒ String
The status of the deployment’s waiting period.
Instance Attribute Details
#deployment_id ⇒ String
The unique ID of a blue/green deployment for which you want to start rerouting traffic to the replacement environment.
685 686 687 688 689 690 |
# File 'lib/aws-sdk-codedeploy/types.rb', line 685 class ContinueDeploymentInput < Struct.new( :deployment_id, :deployment_wait_type) SENSITIVE = [] include Aws::Structure end |
#deployment_wait_type ⇒ String
The status of the deployment’s waiting period. ‘READY_WAIT` indicates that the deployment is ready to start shifting traffic. `TERMINATION_WAIT` indicates that the traffic is shifted, but the original target is not terminated.
685 686 687 688 689 690 |
# File 'lib/aws-sdk-codedeploy/types.rb', line 685 class ContinueDeploymentInput < Struct.new( :deployment_id, :deployment_wait_type) SENSITIVE = [] include Aws::Structure end |