executions
Creates, updates, deletes, gets or lists an executions resource.
Overview
| Name | executions |
| Type | Resource |
| Id | aws.bcm_data_exports.executions |
Fields
The following fields are returned by SELECT queries:
- get_execution
- list_executions
| Name | Datatype | Description |
|---|---|---|
execution_id | string | The ID for this specific execution. (pattern: <code>[\S\s]*</code>) |
execution_status | object | The status of this specific execution. |
export | object | The 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. |
| Name | Datatype | Description |
|---|---|---|
execution_id | string | The ID for this specific execution. (pattern: <code>[\S\s]*</code>) |
execution_status | object | The status of this specific execution. |
Methods
The following methods are available for this resource:
| Name | Accessible by | Required Params | Optional Params | Description |
|---|---|---|---|---|
get_execution | select | region | Exports data based on the source data update. | |
list_executions | select | region | Lists 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.
| Name | Datatype | Description |
|---|---|---|
region | string | AWS region (default: us-east-1) |
SELECT examples
- get_execution
- list_executions
Exports data based on the source data update.
SELECT
execution_id,
execution_status,
export
FROM aws.bcm_data_exports.executions
WHERE region = '{{ region }}' -- required
;
Lists the historical executions for the export.
SELECT
execution_id,
execution_status
FROM aws.bcm_data_exports.executions
WHERE region = '{{ region }}' -- required
;