Class: Aws::ECS::Types::ContinueServiceDeploymentRequest
- Inherits:
-
Struct
- Object
- Struct
- Aws::ECS::Types::ContinueServiceDeploymentRequest
- Defined in:
- gems/aws-sdk-ecs/lib/aws-sdk-ecs/types.rb
Overview
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#action ⇒ String
The action to take on the paused lifecycle hook.
-
#hook_id ⇒ String
The ID of the paused lifecycle hook to act on.
-
#service_deployment_arn ⇒ String
The ARN of the service deployment to continue or roll back.
Instance Attribute Details
#action ⇒ String
The action to take on the paused lifecycle hook. Valid values are:
CONTINUE- Proceeds the deployment to the next lifecycle stage.ROLLBACK- Rolls back the deployment to the previous service revision.
If no value is specified, the default action is CONTINUE.
2763 2764 2765 2766 2767 2768 2769 |
# File 'gems/aws-sdk-ecs/lib/aws-sdk-ecs/types.rb', line 2763 class ContinueServiceDeploymentRequest < Struct.new( :service_deployment_arn, :hook_id, :action) SENSITIVE = [] include Aws::Structure end |
#hook_id ⇒ String
The ID of the paused lifecycle hook to act on. You can find the
hookId by calling DescribeServiceDeployments and inspecting
the lifecycleHookDetails field of the service deployment.
2763 2764 2765 2766 2767 2768 2769 |
# File 'gems/aws-sdk-ecs/lib/aws-sdk-ecs/types.rb', line 2763 class ContinueServiceDeploymentRequest < Struct.new( :service_deployment_arn, :hook_id, :action) SENSITIVE = [] include Aws::Structure end |
#service_deployment_arn ⇒ String
The ARN of the service deployment to continue or roll back.
2763 2764 2765 2766 2767 2768 2769 |
# File 'gems/aws-sdk-ecs/lib/aws-sdk-ecs/types.rb', line 2763 class ContinueServiceDeploymentRequest < Struct.new( :service_deployment_arn, :hook_id, :action) SENSITIVE = [] include Aws::Structure end |