Class: Aws::CodeDeploy::Types::PutLifecycleEventHookExecutionStatusInput
- Inherits:
-
Struct
- Object
- Struct
- Aws::CodeDeploy::Types::PutLifecycleEventHookExecutionStatusInput
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-codedeploy/types.rb
Overview
Note:
When making an API call, you may pass PutLifecycleEventHookExecutionStatusInput data as a hash:
{
deployment_id: "DeploymentId",
lifecycle_event_hook_execution_id: "LifecycleEventHookExecutionId",
status: "Pending", # accepts Pending, InProgress, Succeeded, Failed, Skipped, Unknown
}
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#deployment_id ⇒ String
The unique ID of a deployment.
-
#lifecycle_event_hook_execution_id ⇒ String
The execution ID of a deployment’s lifecycle hook.
-
#status ⇒ String
The result of a Lambda function that validates a deployment lifecycle event (
SucceededorFailed).
Instance Attribute Details
#deployment_id ⇒ String
The unique ID of a deployment. Pass this ID to a Lambda function that validates a deployment lifecycle event.
4761 4762 4763 4764 4765 4766 4767 |
# File 'lib/aws-sdk-codedeploy/types.rb', line 4761 class PutLifecycleEventHookExecutionStatusInput < Struct.new( :deployment_id, :lifecycle_event_hook_execution_id, :status) SENSITIVE = [] include Aws::Structure end |
#lifecycle_event_hook_execution_id ⇒ String
The execution ID of a deployment’s lifecycle hook. A deployment lifecycle hook is specified in the hooks section of the AppSpec file.
4761 4762 4763 4764 4765 4766 4767 |
# File 'lib/aws-sdk-codedeploy/types.rb', line 4761 class PutLifecycleEventHookExecutionStatusInput < Struct.new( :deployment_id, :lifecycle_event_hook_execution_id, :status) SENSITIVE = [] include Aws::Structure end |
#status ⇒ String
The result of a Lambda function that validates a deployment lifecycle event (Succeeded or Failed).
4761 4762 4763 4764 4765 4766 4767 |
# File 'lib/aws-sdk-codedeploy/types.rb', line 4761 class PutLifecycleEventHookExecutionStatusInput < Struct.new( :deployment_id, :lifecycle_event_hook_execution_id, :status) SENSITIVE = [] include Aws::Structure end |