Module Values.ModuleLoggingConfigurationSource

Describes the Apache Airflow log details for the log type (e.g. DagProcessingLogs).

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

    Indicates whether the Apache Airflow log type (e.g. DagProcessingLogs) is enabled.

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

    The Apache Airflow log level for the log type (e.g. DagProcessingLogs).

    *)
  3. cloudWatchLogGroupArn : CloudWatchLogGroupArn.t option;
    (*

    The Amazon Resource Name (ARN) for the CloudWatch Logs group where the Apache Airflow log type (e.g. DagProcessingLogs) is published. For example, arn:aws:logs:us-east-1:123456789012:log-group:airflow-MyMWAAEnvironment-MwaaEnvironment-DAGProcessing:*.

    *)
}
Sourceval make : ?enabled:??? -> ?logLevel:??? -> ?cloudWatchLogGroupArn:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Boolean of LoggingEnabled.t | `Enum of string | `String of CloudWatchLogGroupArn.t ]) 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