describeExport method
Gets information about a specific export.
May throw InternalServerException.
May throw ResourceNotFoundException.
May throw ThrottlingException.
May throw ValidationException.
Parameter exportId :
The unique identifier of the export to describe.
Implementation
Future<DescribeExportResponse> describeExport({
required String exportId,
}) async {
final response = await _protocol.send(
payload: null,
method: 'GET',
requestUri: '/exports/${Uri.encodeComponent(exportId)}',
exceptionFnMap: _exceptionFns,
);
return DescribeExportResponse.fromJson(response);
}