Skip to content

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

workmail_list_mailbox_export_jobs(OrganizationId, NextToken, MaxResults)

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"
)

Request syntax

svc$list_mailbox_export_jobs(
  OrganizationId = "string",
  NextToken = "string",
  MaxResults = 123
)