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
show all
Defined in:
(unknown)

Overview

Note:

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

Instance Attribute Details

#deployment_idString

The unique ID of a deployment. Pass this ID to a Lambda function that validates a deployment lifecycle event.

Returns:

  • (String)

    The unique ID of a deployment.

#lifecycle_event_hook_execution_idString

The execution ID of a deployment\'s lifecycle hook. A deployment lifecycle hook is specified in the hooks section of the AppSpec file.

Returns:

  • (String)

    The execution ID of a deployment\'s lifecycle hook.

#statusString

The result of a Lambda function that validates a deployment lifecycle event (Succeeded or Failed).

Possible values:

  • Pending
  • InProgress
  • Succeeded
  • Failed
  • Skipped
  • Unknown

Returns:

  • (String)

    The result of a Lambda function that validates a deployment lifecycle event (Succeeded or Failed).