deployment_events
Creates, updates, deletes, gets or lists a deployment_events resource.
Overview
| Name | deployment_events |
| Type | Resource |
| Id | aws.launch_wizard.deployment_events |
Fields
The following fields are returned by SELECT queries:
- list_deployment_events
| Name | Datatype | Description |
|---|---|---|
name | string | The name of the deployment event. |
description | string | The description of the deployment event. |
status | string | The status of the deployment event. (CANCELED, CANCELING, COMPLETED, CREATED, FAILED, IN_PROGRESS, PENDING, TIMED_OUT) |
status_reason | string | The reason of the deployment event status. |
timestamp | string (date-time) | The timestamp of the deployment event. |
Methods
The following methods are available for this resource:
| Name | Accessible by | Required Params | Optional Params | Description |
|---|---|---|---|---|
list_deployment_events | select | region | Lists the events of a deployment. |
Parameters
Parameters can be passed in the WHERE clause of a query. Check the Methods section to see which parameters are required or optional for each operation.
| Name | Datatype | Description |
|---|---|---|
region | string | AWS region (default: us-east-1) |
SELECT examples
- list_deployment_events
Lists the events of a deployment.
SELECT
name,
description,
status,
status_reason,
timestamp
FROM aws.launch_wizard.deployment_events
WHERE region = '{{ region }}' -- required
;