Module Values.LogConfigSource

The logging configuration settings for the event bus. For more information, see Configuring logs for event buses in the EventBridge User Guide.

Sourcetype nonrec t = {
  1. includeDetail : IncludeDetail.t option;
    (*

    Whether EventBridge include detailed event information in the records it generates. Detailed data can be useful for troubleshooting and debugging. This information includes details of the event itself, as well as target details. For more information, see Including detail data in event bus logs in the EventBridge User Guide.

    *)
  2. level : Level.t option;
    (*

    The level of logging detail to include. This applies to all log destinations for the event bus. For more information, see Specifying event bus log level in the EventBridge User Guide.

    *)
}
Sourceval make : ?includeDetail:??? -> ?level:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Enum of string ]) 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