getIndexingConfiguration method

Future<GetIndexingConfigurationResponse> getIndexingConfiguration()

Gets the indexing configuration.

Requires permission to access the GetIndexingConfiguration action.

May throw InternalFailureException. May throw InvalidRequestException. May throw ServiceUnavailableException. May throw ThrottlingException. May throw UnauthorizedException.

Implementation

Future<GetIndexingConfigurationResponse> getIndexingConfiguration() async {
  final response = await _protocol.send(
    payload: null,
    method: 'GET',
    requestUri: '/indexing/config',
    exceptionFnMap: _exceptionFns,
  );
  return GetIndexingConfigurationResponse.fromJson(response);
}