Module Values.GroupInformationSource

Information about a group.

Sourcetype nonrec t = {
  1. arn : string option;
    (*

    The ARN of the group.

    *)
  2. creationTimestamp : string option;
    (*

    The time, in milliseconds since the epoch, when the group was created.

    *)
  3. id : string option;
    (*

    The ID of the group.

    *)
  4. lastUpdatedTimestamp : string option;
    (*

    The time, in milliseconds since the epoch, when the group was last updated.

    *)
  5. latestVersion : string option;
    (*

    The ID of the latest version associated with the group.

    *)
  6. latestVersionArn : string option;
    (*

    The ARN of the latest version associated with the group.

    *)
  7. name : string option;
    (*

    The name of the group.

    *)
}
Sourceval make : ?arn:??? -> ?creationTimestamp:??? -> ?id:??? -> ?lastUpdatedTimestamp:??? -> ?latestVersion:??? -> ?latestVersionArn:??? -> ?name:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `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