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¶
dynamodb_list_imports(TableArn, PageSize, NextToken)
Arguments¶
TableArn |
The Amazon Resource Name (ARN) associated with the table that was imported to. |
PageSize |
The number of |
NextToken |
An optional string that, if supplied, must be copied from the
output of a previous call to |
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"
)
Request syntax¶
svc$list_imports(
TableArn = "string",
PageSize = 123,
NextToken = "string"
)