deleteEventLogConfiguration method
Delete an event log configuration.
May throw AccessDeniedException.
May throw InternalServerException.
May throw ResourceNotFoundException.
May throw ThrottlingException.
May throw ValidationException.
Parameter id :
The identifier of the event log configuration.
Implementation
Future<void> deleteEventLogConfiguration({
required String id,
}) async {
await _protocol.send(
payload: null,
method: 'DELETE',
requestUri: '/event-log-configurations/${Uri.encodeComponent(id)}',
exceptionFnMap: _exceptionFns,
);
}