List Mailbox Export Jobs
workmail_list_mailbox_export_jobs | R Documentation |
Lists the mailbox export jobs started for the specified organization within the last seven days¶
Description¶
Lists the mailbox export jobs started for the specified organization within the last seven days.
Usage¶
Arguments¶
OrganizationId
[required] The organization ID.
NextToken
The token to use to retrieve the next page of results.
MaxResults
The maximum number of results to return in a single call.
Value¶
A list with the following syntax:
list(
Jobs = list(
list(
JobId = "string",
EntityId = "string",
Description = "string",
S3BucketName = "string",
S3Path = "string",
EstimatedProgress = 123,
State = "RUNNING"|"COMPLETED"|"FAILED"|"CANCELLED",
StartTime = as.POSIXct(
"2015-01-01"
),
EndTime = as.POSIXct(
"2015-01-01"
)
)
),
NextToken = "string"
)