getDataExportConfiguration method

Future<GetDataExportConfigurationOutput> getDataExportConfiguration({
  1. required String domainIdentifier,
})

Gets data export configuration details.

May throw AccessDeniedException. May throw InternalServerException. May throw ResourceNotFoundException. May throw ThrottlingException. May throw ValidationException.

Parameter domainIdentifier : The ID of the domain where you want to get the data export configuration details.

Implementation

Future<GetDataExportConfigurationOutput> getDataExportConfiguration({
  required String domainIdentifier,
}) async {
  final response = await _protocol.send(
    payload: null,
    method: 'GET',
    requestUri:
        '/v2/domains/${Uri.encodeComponent(domainIdentifier)}/data-export-configuration',
    exceptionFnMap: _exceptionFns,
  );
  return GetDataExportConfigurationOutput.fromJson(response);
}