Module Values.CloudWatchLogsLogDeliveryDescriptionSource

A description of the log delivery settings.

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

    Whether log delivery to Amazon CloudWatch Logs is enabled.

    *)
  2. logGroup : string option;
    (*

    The name of the CloudWatch log group that is the destination for log delivery.

    *)
}
Sourceval make : ?enabled:??? -> ?logGroup:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Boolean of bool | `String of string ]) 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