List Exports
| dynamodb_list_exports | R Documentation |
Lists completed exports within the past 90 days¶
Description¶
Lists completed exports within the past 90 days.
Usage¶
Arguments¶
TableArnThe Amazon Resource Name (ARN) associated with the exported table.
MaxResultsMaximum number of results to return per page.
NextTokenAn optional string that, if supplied, must be copied from the output of a previous call to
list_exports. When provided in this manner, the API fetches the next page of results.
Value¶
A list with the following syntax:
list(
ExportSummaries = list(
list(
ExportArn = "string",
ExportStatus = "IN_PROGRESS"|"COMPLETED"|"FAILED",
ExportType = "FULL_EXPORT"|"INCREMENTAL_EXPORT"
)
),
NextToken = "string"
)