Skip to main content

executions

Creates, updates, deletes, gets or lists an executions resource.

Overview

Nameexecutions
TypeResource
Idaws.bcm_data_exports.executions

Fields

The following fields are returned by SELECT queries:

NameDatatypeDescription
execution_idstringThe ID for this specific execution. (pattern: <code>[\S\s]*</code>)
execution_statusobjectThe status of this specific execution.
exportobjectThe export data for this specific execution. This export data is a snapshot from when the execution was generated. The data could be different from the current export data if the export was updated since the execution was generated.

Methods

The following methods are available for this resource:

NameAccessible byRequired ParamsOptional ParamsDescription
get_executionselectregionExports data based on the source data update.
list_executionsselectregionLists the historical executions for the export.

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

Exports data based on the source data update.

SELECT
execution_id,
execution_status,
export
FROM aws.bcm_data_exports.executions
WHERE region = '{{ region }}' -- required
;