getExportTask method
Retrieves a specified export task.
May throw InternalServerException.
May throw ResourceNotFoundException.
May throw ThrottlingException.
May throw ValidationException.
Parameter taskIdentifier :
The unique identifier of the export task.
Implementation
Future<GetExportTaskOutput> getExportTask({
required String taskIdentifier,
}) async {
final response = await _protocol.send(
payload: null,
method: 'GET',
requestUri: '/exporttasks/${Uri.encodeComponent(taskIdentifier)}',
exceptionFnMap: _exceptionFns,
);
return GetExportTaskOutput.fromJson(response);
}