Values_0.LogEventConfigurationSourceConfiguration for event-based logging that specifies which event types to log and their logging settings. Used for account-level logging overrides.
type nonrec t = {eventType : LogEventType.t;The type of event to log. These include event types like Connect, Publish, and Disconnect.
*)logLevel : LogLevel.t option;The logging level for the specified event type. Determines the verbosity of log messages generated for this event type.
*)logDestination : LogDestination.t option;CloudWatch Log Group for event-based logging. Specifies where log events should be sent. The log destination for event-based logging overrides default Log Group for the specified event type and applies to all resources associated with that event.
*)}val to_value :
t ->
[> `Structure of
(string * [> `Enum of string | `String of LogEventType.t ]) list ]