Module Values.RoleInfoSource

Provides information about the role that is assigned to the user.

Sourcetype nonrec t = {
  1. roleName : RoleNameType.t option;
    (*

    The friendly name of the role that is assigned to the user.

    *)
  2. accountId : AccountIdType.t option;
    (*

    The identifier of the AWS account assigned to the user.

    *)
}
Sourceval make : ?roleName:??? -> ?accountId:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `String of RoleNameType.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