Class: Aws::CodeDeploy::Types::PutLifecycleEventHookExecutionStatusInput
- Inherits:
-
Struct
- Object
- Struct
- Aws::CodeDeploy::Types::PutLifecycleEventHookExecutionStatusInput
- 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 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.
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.
4214 4215 4216 4217 4218 4219 4220 |
# File 'lib/aws-sdk-codedeploy/types.rb', line 4214 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.
4214 4215 4216 4217 4218 4219 4220 |
# File 'lib/aws-sdk-codedeploy/types.rb', line 4214 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. The values listed in **Valid Values** are valid for lifecycle statuses in general; however, only ‘Succeeded` and `Failed` can be passed successfully in your API call.
4214 4215 4216 4217 4218 4219 4220 |
# File 'lib/aws-sdk-codedeploy/types.rb', line 4214 class PutLifecycleEventHookExecutionStatusInput < Struct.new( :deployment_id, :lifecycle_event_hook_execution_id, :status) SENSITIVE = [] include Aws::Structure end |