Module Values.EntityInfoSource

Contains details about the specified entity (user or role). This data type is an element of the EntityDetails object.

Sourcetype nonrec t = {
  1. arn : ArnType.t option;
  2. name : UserNameType.t option;
    (*

    The name of the entity (user or role).

    *)
  3. type_ : PolicyOwnerEntityType.t option;
    (*

    The type of entity (user or role).

    *)
  4. id : IdType.t option;
    (*

    The identifier of the entity (user or role).

    *)
  5. path : PathType.t option;
    (*

    The path to the entity (user or role). For more information about paths, see IAM identifiers in the IAM User Guide.

    *)
}
Sourceval make : ?arn:??? -> ?name:??? -> ?type_:??? -> ?id:??? -> ?path:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Enum of string | `String of ArnType.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