List Imports
| dynamodb_list_imports | R Documentation |
Lists completed imports within the past 90 days¶
Description¶
Lists completed imports within the past 90 days.
Usage¶
Arguments¶
TableArnThe Amazon Resource Name (ARN) associated with the table that was imported to.
PageSizeThe number of
ImportSummaryobjects returned in a single page.NextTokenAn optional string that, if supplied, must be copied from the output of a previous call to
list_imports. When provided in this manner, the API fetches the next page of results.
Value¶
A list with the following syntax:
list(
ImportSummaryList = list(
list(
ImportArn = "string",
ImportStatus = "IN_PROGRESS"|"COMPLETED"|"CANCELLING"|"CANCELLED"|"FAILED",
TableArn = "string",
S3BucketSource = list(
S3BucketOwner = "string",
S3Bucket = "string",
S3KeyPrefix = "string"
),
CloudWatchLogGroupArn = "string",
InputFormat = "DYNAMODB_JSON"|"ION"|"CSV",
StartTime = as.POSIXct(
"2015-01-01"
),
EndTime = as.POSIXct(
"2015-01-01"
)
)
),
NextToken = "string"
)