Module Values.GroupSummarySource

A structure containing some information about a group.

Sourcetype nonrec t = {
  1. id : String_.t option;
    (*

    The unique ID of the group.

    *)
  2. name : GroupName.t option;
    (*

    The name of the group.

    *)
  3. arn : GroupArn.t option;
    (*

    The ARN of the group.

    *)
}
Sourceval make : ?id:??? -> ?name:??? -> ?arn:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `String of String_.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