Module Values.LoggingConfigurationSource

The LoggingConfiguration data type is used to set CloudWatch Logs options.

Sourcetype nonrec t = {
  1. level : LogLevel.t option;
    (*

    Defines which category of execution history events are logged.

    *)
  2. includeExecutionData : IncludeExecutionData.t option;
    (*

    Determines whether execution data is included in your log. When set to false, data is excluded.

    *)
  3. destinations : LogDestinationList.t option;
    (*

    An array of objects that describes where your execution history events will be logged. Limited to size 1. Required, if your log level is not set to OFF.

    *)
}
Sourceval make : ?level:??? -> ?includeExecutionData:??? -> ?destinations:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Boolean of IncludeExecutionData.t | `Enum of string | `List of [> `Structure of (string * [> `Structure of (string * [> `String of Arn.t ]) list ]) list ] list ]) 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