You are viewing documentation for version 2 of the AWS SDK for Ruby. Version 3 documentation can be found here.
Class: Aws::CodeDeploy::Types::PutLifecycleEventHookExecutionStatusInput
- Inherits:
-
Struct
- Object
- Struct
- Aws::CodeDeploy::Types::PutLifecycleEventHookExecutionStatusInput
- Defined in:
- (unknown)
Overview
When passing PutLifecycleEventHookExecutionStatusInput as input to an Aws::Client method, you can use a vanilla Hash:
{
deployment_id: "DeploymentId",
lifecycle_event_hook_execution_id: "LifecycleEventHookExecutionId",
status: "Pending", # accepts Pending, InProgress, Succeeded, Failed, Skipped, Unknown
}
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 (
Succeeded
orFailed
).
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.
#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.
#status ⇒ String
The result of a Lambda function that validates a deployment lifecycle
event (Succeeded
or Failed
).
Possible values:
- Pending
- InProgress
- Succeeded
- Failed
- Skipped
- Unknown