deleteLoggingConfiguration method

Future<void> deleteLoggingConfiguration({
  1. required String identifier,
})

Deletes the specified logging configuration.

May throw AccessDeniedException. May throw ConflictException. May throw PendingVerification. May throw ResourceNotFoundException. May throw ValidationException.

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

Implementation

Future<void> deleteLoggingConfiguration({
  required String identifier,
}) async {
  final $payload = <String, dynamic>{
    'identifier': identifier,
  };
  await _protocol.send(
    payload: $payload,
    method: 'POST',
    requestUri: '/DeleteLoggingConfiguration',
    exceptionFnMap: _exceptionFns,
  );
}