Module Values_0.LogEventConfigurationSource

Configuration for event-based logging that specifies which event types to log and their logging settings. Used for account-level logging overrides.

Sourcetype nonrec t = {
  1. eventType : LogEventType.t;
    (*

    The type of event to log. These include event types like Connect, Publish, and Disconnect.

    *)
  2. logLevel : LogLevel.t option;
    (*

    The logging level for the specified event type. Determines the verbosity of log messages generated for this event type.

    *)
  3. 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.

    *)
}
Sourceval context_ : string
Sourceval make : ?logLevel:??? -> ?logDestination:??? -> eventType:LogEventType.t -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Enum of string | `String of LogEventType.t ]) list ]
Sourceval to_query : t -> Awso.Client.Query.t
Sourceval of_xml : Awso.Xml.t -> t
Sourceval of_string : string -> t
Sourceval of_json : Yojson.Safe.t -> t
Sourceval to_json : t -> Yojson.Safe.t