getClassificationExportConfiguration method

Future<GetClassificationExportConfigurationResponse> getClassificationExportConfiguration()

Retrieves the configuration settings for storing data classification results.

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

Implementation

Future<GetClassificationExportConfigurationResponse>
    getClassificationExportConfiguration() async {
  final response = await _protocol.send(
    payload: null,
    method: 'GET',
    requestUri: '/classification-export-configuration',
    exceptionFnMap: _exceptionFns,
  );
  return GetClassificationExportConfigurationResponse.fromJson(response);
}