getLoggingConfiguration method

Future<GetLoggingConfigurationResponse> getLoggingConfiguration({
  1. required String identifier,
})

Gets the specified logging configuration.

May throw AccessDeniedException. May throw ResourceNotFoundException. May throw ValidationException.

Parameter identifier : Identifier of the logging configuration to be retrieved.

Implementation

Future<GetLoggingConfigurationResponse> getLoggingConfiguration({
  required String identifier,
}) async {
  final $payload = <String, dynamic>{
    'identifier': identifier,
  };
  final response = await _protocol.send(
    payload: $payload,
    method: 'POST',
    requestUri: '/GetLoggingConfiguration',
    exceptionFnMap: _exceptionFns,
  );
  return GetLoggingConfigurationResponse.fromJson(response);
}