Module Values.LoggingConfigurationSource

Describes the Apache Airflow log types that are published to CloudWatch Logs.

Sourcetype nonrec t = {
  1. dagProcessingLogs : ModuleLoggingConfiguration.t option;
    (*

    The Airflow DAG processing logs published to CloudWatch Logs and the log level.

    *)
  2. schedulerLogs : ModuleLoggingConfiguration.t option;
    (*

    The Airflow scheduler logs published to CloudWatch Logs and the log level.

    *)
  3. webserverLogs : ModuleLoggingConfiguration.t option;
    (*

    The Airflow web server logs published to CloudWatch Logs and the log level.

    *)
  4. workerLogs : ModuleLoggingConfiguration.t option;
    (*

    The Airflow worker logs published to CloudWatch Logs and the log level.

    *)
  5. taskLogs : ModuleLoggingConfiguration.t option;
    (*

    The Airflow task logs published to CloudWatch Logs and the log level.

    *)
}
Sourceval make : ?dagProcessingLogs:??? -> ?schedulerLogs:??? -> ?webserverLogs:??? -> ?workerLogs:??? -> ?taskLogs:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Structure of (string * [> `Boolean of LoggingEnabled.t | `Enum of string | `String of CloudWatchLogGroupArn.t ]) 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