getEventLogConfiguration method
Get 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<GetEventLogConfigurationResponse> getEventLogConfiguration({
required String id,
}) async {
final response = await _protocol.send(
payload: null,
method: 'GET',
requestUri: '/event-log-configurations/${Uri.encodeComponent(id)}',
exceptionFnMap: _exceptionFns,
);
return GetEventLogConfigurationResponse.fromJson(response);
}