Module Values.GroupDetailSource

Contains information about an IAM group, including all of the group's policies. This data type is used as a response element in the GetAccountAuthorizationDetails operation.

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;
  5. createDate : DateType.t option;
    (*

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

    *)
  6. groupPolicyList : PolicyDetailListType.t option;
    (*

    A list of the inline policies embedded in the group.

    *)
  7. attachedManagedPolicies : AttachedPoliciesListType.t option;
    (*

    A list of the managed policies attached to the group.

    *)
}
Sourceval make : ?path:??? -> ?groupName:??? -> ?groupId:??? -> ?arn:??? -> ?createDate:??? -> ?groupPolicyList:??? -> ?attachedManagedPolicies:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `List of [> `Structure of (string * [> `String of PolicyNameType.t ]) list ] list | `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