Module Values.AwsIamUserDetailsSource

Information about an IAM user.

Sourcetype nonrec t = {
  1. attachedManagedPolicies : AwsIamAttachedManagedPolicyList.t option;
    (*

    A list of the managed policies that are attached to the user.

    *)
  2. createDate : NonEmptyString.t option;
    (*

    Indicates when the user was created. For more information about the validation and formatting of timestamp fields in Security Hub CSPM, see Timestamps.

    *)
  3. groupList : StringList.t option;
    (*

    A list of IAM groups that the user belongs to.

    *)
  4. path : NonEmptyString.t option;
    (*

    The path to the user.

    *)
  5. permissionsBoundary : AwsIamPermissionsBoundary.t option;
    (*

    The permissions boundary for the user.

    *)
  6. userId : NonEmptyString.t option;
    (*

    The unique identifier for the user.

    *)
  7. userName : NonEmptyString.t option;
    (*

    The name of the user.

    *)
  8. userPolicyList : AwsIamUserPolicyList.t option;
    (*

    The list of inline policies that are embedded in the user.

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