describeExport method
Describes an existing table export.
May throw ExportNotFoundException.
May throw InternalServerError.
May throw LimitExceededException.
Parameter exportArn :
The Amazon Resource Name (ARN) associated with the export.
Implementation
Future<DescribeExportOutput> describeExport({
required String exportArn,
}) async {
final headers = <String, String>{
'Content-Type': 'application/x-amz-json-1.0',
'X-Amz-Target': 'DynamoDB_20120810.DescribeExport'
};
final jsonResponse = await _protocol.send(
method: 'POST',
requestUri: '/',
exceptionFnMap: _exceptionFns,
// TODO queryParams
headers: headers,
payload: {
'ExportArn': exportArn,
},
);
return DescribeExportOutput.fromJson(jsonResponse.body);
}