List Journal S3 Exports For Ledger
qldb_list_journal_s3_exports_for_ledger | R Documentation |
Returns all journal export jobs for a specified ledger¶
Description¶
Returns all journal export jobs for a specified ledger.
This action returns a maximum of MaxResults
items, and is paginated so
that you can retrieve all the items by calling
list_journal_s3_exports_for_ledger
multiple times.
This action does not return any expired export jobs. For more information, see Export job expiration in the Amazon QLDB Developer Guide.
Usage¶
qldb_list_journal_s3_exports_for_ledger(Name, MaxResults, NextToken)
Arguments¶
Name |
[required] The name of the ledger. |
MaxResults |
The maximum number of results to return in a single
|
NextToken |
A pagination token, indicating that you want to retrieve the next
page of results. If you received a value for |
Value¶
A list with the following syntax:
list(
JournalS3Exports = list(
list(
LedgerName = "string",
ExportId = "string",
ExportCreationTime = as.POSIXct(
"2015-01-01"
),
Status = "IN_PROGRESS"|"COMPLETED"|"CANCELLED",
InclusiveStartTime = as.POSIXct(
"2015-01-01"
),
ExclusiveEndTime = as.POSIXct(
"2015-01-01"
),
S3ExportConfiguration = list(
Bucket = "string",
Prefix = "string",
EncryptionConfiguration = list(
ObjectEncryptionType = "SSE_KMS"|"SSE_S3"|"NO_ENCRYPTION",
KmsKeyArn = "string"
)
),
RoleArn = "string",
OutputFormat = "ION_BINARY"|"ION_TEXT"|"JSON"
)
),
NextToken = "string"
)
Request syntax¶
svc$list_journal_s3_exports_for_ledger(
Name = "string",
MaxResults = 123,
NextToken = "string"
)