getExport method
Returns information for an existing domain export.
May throw InvalidParameterValueException.
May throw NoSuchExportException.
Parameter exportArn :
Unique ARN identifier of the export.
Implementation
Future<GetExportResponse> getExport({
required String exportArn,
}) async {
final $payload = <String, dynamic>{
'exportArn': exportArn,
};
final response = await _protocol.send(
payload: $payload,
method: 'POST',
requestUri: '/v2/GetExport',
exceptionFnMap: _exceptionFns,
);
return GetExportResponse.fromJson(response);
}