Module Values.UserDetailSource

Contains information about an IAM user, including all the user's policies and all the IAM groups the user is in. 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 user. For more information about paths, see IAM identifiers in the IAM User Guide.

    *)
  2. userName : UserNameType.t option;
    (*

    The friendly name identifying the user.

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

    The stable and unique string identifying the user. 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 user was created.

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

    A list of the inline policies embedded in the user.

    *)
  7. groupList : GroupNameListType.t option;
    (*

    A list of IAM groups that the user is in.

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

    A list of the managed policies attached to the user.

    *)
  9. permissionsBoundary : AttachedPermissionsBoundary.t option;
    (*

    The ARN of the policy used to set the permissions boundary for the user. For more information about permissions boundaries, see Permissions boundaries for IAM identities in the IAM User Guide.

    *)
  10. tags : TagListType.t option;
    (*

    A list of tags that are associated with the user. For more information about tagging, see Tagging IAM resources in the IAM User Guide.

    *)
}
Sourceval make : ?path:??? -> ?userName:??? -> ?userId:??? -> ?arn:??? -> ?createDate:??? -> ?userPolicyList:??? -> ?groupList:??? -> ?attachedManagedPolicies:??? -> ?permissionsBoundary:??? -> ?tags:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `List of [> `String of GroupNameType.t | `Structure of (string * [> `String of PolicyNameType.t ]) list ] list | `String of PathType.t | `Structure of (string * [> `Enum of string | `String of ArnType.t ]) list | `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