Module Values.FederatedUserSource

Identifiers for the federated user that is associated with the credentials.

Sourcetype nonrec t = {
  1. federatedUserId : FederatedIdType.t option;
    (*

    The string that identifies the federated user associated with the credentials, similar to the unique ID of an IAM user.

    *)
  2. arn : ArnType.t option;
    (*

    The ARN that specifies the federated user that is associated with the credentials. For more information about ARNs and how to use them in policies, see IAM Identifiers in the IAM User Guide.

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