Module Values.LogGroupSummarySource

This structure contains information about one log group in your account.

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

    The name of the log group.

    *)
  2. logGroupArn : Arn.t option;
    (*

    The Amazon Resource Name (ARN) of the log group.

    *)
  3. logGroupClass : LogGroupClass.t option;
    (*

    The log group class for this log group. For details about the features supported by each log group class, see Log classes

    *)
}
Sourceval make : ?logGroupName:??? -> ?logGroupArn:??? -> ?logGroupClass:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Enum of string | `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