Module Values.CloudWatchLogConfigurationSource

Holds CloudWatch log configuration settings and metadata that specify settings like log files to monitor and where to send them.

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

    Specifies if CloudWatch logging is enabled.

    *)
  2. logGroupName : XmlString.t option;
    (*

    The name of the CloudWatch log group where logs are published.

    *)
  3. logStreamNamePrefix : XmlString.t option;
    (*

    The prefix of the log stream name.

    *)
  4. encryptionKeyArn : XmlString.t option;
    (*

    The ARN of the encryption key used to encrypt the logs.

    *)
  5. logTypes : LogTypesMap.t option;
    (*

    A map of log types to file names for publishing logs to the standard output or standard error streams for CloudWatch. Valid log types include STEP_LOGS, SPARK_DRIVER, and SPARK_EXECUTOR. Valid file names for each type include STDOUT and STDERR.

    *)
}
Sourceval context_ : string
Sourceval make : ?logGroupName:??? -> ?logStreamNamePrefix:??? -> ?encryptionKeyArn:??? -> ?logTypes:??? -> enabled:Boolean.t -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Boolean of Boolean.t | `Map of ([> `String of XmlString.t ] * [> `List of [> `String of XmlString.t ] list ]) list | `String of XmlString.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