Module Values.LogGroupSummarySource

A subset of the attributes that describe a log group. In CloudWatch a log group is a group of log streams that share the same retention, monitoring, and access control settings.

Sourcetype nonrec t = {
  1. logGroupName : LogGroupIdentifier.t option;
    (*

    The name of the log group.

    *)
  2. logType : String20.t option;
    (*

    The type of log.

    *)
}
Sourceval make : ?logGroupName:??? -> ?logType:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `String of LogGroupIdentifier.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