cancelMailboxExportJob method
Cancels a mailbox export job.
May throw EntityNotFoundException.
May throw InvalidParameterException.
May throw OrganizationNotFoundException.
May throw OrganizationStateException.
Parameter jobId :
The job ID.
Parameter organizationId :
The organization ID.
Parameter clientToken :
The idempotency token for the client request.
Implementation
Future<void> cancelMailboxExportJob({
required String jobId,
required String organizationId,
String? clientToken,
}) async {
final headers = <String, String>{
'Content-Type': 'application/x-amz-json-1.1',
'X-Amz-Target': 'WorkMailService.CancelMailboxExportJob'
};
await _protocol.send(
method: 'POST',
requestUri: '/',
exceptionFnMap: _exceptionFns,
// TODO queryParams
headers: headers,
payload: {
'JobId': jobId,
'OrganizationId': organizationId,
'ClientToken': clientToken ?? _s.generateIdempotencyToken(),
},
);
}