Module Values.GroupSource

Contains information about an IAM group entity. This data type is used as a response element in the following operations: CreateGroup GetGroup ListGroups

Sourcetype nonrec t = {
  1. path : PathType.t option;
    (*

    The path to the group. For more information about paths, see IAM identifiers in the IAM User Guide.

    *)
  2. groupName : GroupNameType.t option;
    (*

    The friendly name that identifies the group.

    *)
  3. groupId : IdType.t option;
    (*

    The stable and unique string identifying the group. For more information about IDs, see IAM identifiers in the IAM User Guide.

    *)
  4. arn : ArnType.t option;
    (*

    The Amazon Resource Name (ARN) specifying the group. For more information about ARNs and how to use them in policies, see IAM identifiers in the IAM User Guide.

    *)
  5. createDate : DateType.t option;
    (*

    The date and time, in ISO 8601 date-time format, when the group was created.

    *)
}
Sourceval make : ?path:??? -> ?groupName:??? -> ?groupId:??? -> ?arn:??? -> ?createDate:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `String of PathType.t | `Timestamp of DateType.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