Module Values.CloudWatchLoggingConfigurationSource

Configuration settings for delivering logs to Amazon CloudWatch log groups.

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

    Enables CloudWatch logging.

    *)
  2. logGroup : LogGroupName.t option;
    (*

    The name of the log group in Amazon CloudWatch Logs where you want to publish your logs.

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

    Prefix for the CloudWatch log stream name.

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

    The types of logs that you want to publish to CloudWatch.

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