Module Values.ModuleLoggingConfigurationInputSource

Enables the Apache Airflow log type (e.g. DagProcessingLogs) and defines the log level to send to CloudWatch Logs (e.g. INFO).

Sourcetype nonrec t = {
  1. enabled : LoggingEnabled.t;
    (*

    Indicates whether to enable the Apache Airflow log type (e.g. DagProcessingLogs).

    *)
  2. logLevel : LoggingLevel.t;
    (*

    Defines the Apache Airflow log level (e.g. INFO) to send to CloudWatch Logs.

    *)
}
Sourceval context_ : string
Sourceval make : enabled:LoggingEnabled.t -> logLevel:LoggingLevel.t -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Boolean of LoggingEnabled.t | `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