Skip to main content

deployment_events

Creates, updates, deletes, gets or lists a deployment_events resource.

Overview

Namedeployment_events
TypeResource
Idaws.launch_wizard.deployment_events

Fields

The following fields are returned by SELECT queries:

NameDatatypeDescription
namestringThe name of the deployment event.
descriptionstringThe description of the deployment event.
statusstringThe status of the deployment event. (CANCELED, CANCELING, COMPLETED, CREATED, FAILED, IN_PROGRESS, PENDING, TIMED_OUT)
status_reasonstringThe reason of the deployment event status.
timestampstring (date-time)The timestamp of the deployment event.

Methods

The following methods are available for this resource:

NameAccessible byRequired ParamsOptional ParamsDescription
list_deployment_eventsselectregionLists 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.

NameDatatypeDescription
regionstringAWS region (default: us-east-1)

SELECT examples

Lists the events of a deployment.

SELECT
name,
description,
status,
status_reason,
timestamp
FROM aws.launch_wizard.deployment_events
WHERE region = '{{ region }}' -- required
;