Skip to content

Describe Mailbox Export Job

workmail_describe_mailbox_export_job R Documentation

Describes the current status of a mailbox export job

Description

Describes the current status of a mailbox export job.

Usage

workmail_describe_mailbox_export_job(JobId, OrganizationId)

Arguments

JobId

[required] The mailbox export job ID.

OrganizationId

[required] The organization ID.

Value

A list with the following syntax:

list(
  EntityId = "string",
  Description = "string",
  RoleArn = "string",
  KmsKeyArn = "string",
  S3BucketName = "string",
  S3Prefix = "string",
  S3Path = "string",
  EstimatedProgress = 123,
  State = "RUNNING"|"COMPLETED"|"FAILED"|"CANCELLED",
  ErrorInfo = "string",
  StartTime = as.POSIXct(
    "2015-01-01"
  ),
  EndTime = as.POSIXct(
    "2015-01-01"
  )
)

Request syntax

svc$describe_mailbox_export_job(
  JobId = "string",
  OrganizationId = "string"
)