Module Values.LoggingConfigurationInputSource

Defines the Apache Airflow log types to send to CloudWatch Logs.

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

    Publishes Airflow DAG processing logs to CloudWatch Logs.

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

    Publishes Airflow scheduler logs to CloudWatch Logs.

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

    Publishes Airflow web server logs to CloudWatch Logs.

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

    Publishes Airflow worker logs to CloudWatch Logs.

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

    Publishes Airflow task logs to CloudWatch Logs.

    *)
}
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 ]) 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