Module Values.GetOpenIdTokenInputSource

Input to the GetOpenIdToken action.

Sourcetype nonrec t = {
  1. identityId : IdentityId.t;
    (*

    A unique identifier in the format REGION:GUID.

    *)
  2. logins : LoginsMap.t option;
    (*

    A set of optional name-value pairs that map provider names to provider tokens. When using graph.facebook.com and www.amazon.com, supply the access_token returned from the provider's authflow. For accounts.google.com, an Amazon Cognito user pool provider, or any other OpenID Connect provider, always include the id_token.

    *)
}
Sourceval context_ : string
Sourceval make : ?logins:??? -> identityId:IdentityId.t -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Map of ([> `String of IdentityProviderName.t ] * [> `String of IdentityProviderToken.t ]) list | `String of IdentityId.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