Skip to main content

data_set_export_histories

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

Overview

Namedata_set_export_histories
TypeResource
Idaws.m2.data_set_export_histories

Fields

The following fields are returned by SELECT queries:

NameDatatypeDescription
statusstringThe status of the data set export task. (Creating, Running, Completed, Failed)
status_reasonstringIf dataset exports failed, the failure reason will show here.
summaryobjectA summary of the data set export task.
task_idstringThe identifier of the data set export task. (pattern: <code>^\S{1,80}$</code>)

Methods

The following methods are available for this resource:

NameAccessible byRequired ParamsOptional ParamsDescription
list_data_set_export_historyselectapplication_id, regionmaxResults, nextTokenLists 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.

NameDatatypeDescription
application_idstringThe unique identifier of the application.
regionstringAWS region (default: us-east-1)
maxResultsintegerThe maximum number of objects to return.
nextTokenstringA 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

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 }}'
;