data_set_export_histories
Creates, updates, deletes, gets or lists a data_set_export_histories resource.
Overview
| Name | data_set_export_histories |
| Type | Resource |
| Id | aws.m2.data_set_export_histories |
Fields
The following fields are returned by SELECT queries:
- list_data_set_export_history
| Name | Datatype | Description |
|---|---|---|
status | string | The status of the data set export task. (Creating, Running, Completed, Failed) |
status_reason | string | If dataset exports failed, the failure reason will show here. |
summary | object | A summary of the data set export task. |
task_id | string | The identifier of the data set export task. (pattern: <code>^\S{1,80}$</code>) |
Methods
The following methods are available for this resource:
| Name | Accessible by | Required Params | Optional Params | Description |
|---|---|---|---|---|
list_data_set_export_history | select | application_id, region | maxResults, nextToken | Lists the data set exports for the specified application. |
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 |
|---|---|---|
application_id | string | The unique identifier of the application. |
region | string | AWS region (default: us-east-1) |
maxResults | integer | The maximum number of objects to return. |
nextToken | string | A pagination token returned from a previous call to this operation. This specifies the next item to return. To return to the beginning of the list, exclude this parameter. |
SELECT examples
- list_data_set_export_history
Lists the data set exports for the specified application.
SELECT
status,
status_reason,
summary,
task_id
FROM aws.m2.data_set_export_histories
WHERE application_id = '{{ application_id }}' -- required
AND region = '{{ region }}' -- required
AND maxResults = '{{ maxResults }}'
AND nextToken = '{{ nextToken }}'
;