describeMailboxExportJob method

Future<DescribeMailboxExportJobResponse> describeMailboxExportJob({
  1. required String jobId,
  2. required String organizationId,
})

Describes the current status of a mailbox export job.

May throw InvalidParameterException. May throw OrganizationNotFoundException. May throw OrganizationStateException. May throw EntityNotFoundException.

Parameter jobId : The mailbox export job ID.

Parameter organizationId : The organization ID.

Implementation

Future<DescribeMailboxExportJobResponse> describeMailboxExportJob({
  required String jobId,
  required String organizationId,
}) async {
  ArgumentError.checkNotNull(jobId, 'jobId');
  _s.validateStringLength(
    'jobId',
    jobId,
    1,
    63,
    isRequired: true,
  );
  ArgumentError.checkNotNull(organizationId, 'organizationId');
  _s.validateStringLength(
    'organizationId',
    organizationId,
    34,
    34,
    isRequired: true,
  );
  final headers = <String, String>{
    'Content-Type': 'application/x-amz-json-1.1',
    'X-Amz-Target': 'WorkMailService.DescribeMailboxExportJob'
  };
  final jsonResponse = await _protocol.send(
    method: 'POST',
    requestUri: '/',
    exceptionFnMap: _exceptionFns,
    // TODO queryParams
    headers: headers,
    payload: {
      'JobId': jobId,
      'OrganizationId': organizationId,
    },
  );

  return DescribeMailboxExportJobResponse.fromJson(jsonResponse.body);
}