Module Values.GetIdInputSource

Input to the GetId action.

Sourcetype nonrec t = {
  1. accountId : AccountId.t option;
    (*

    A standard Amazon Web Services account ID (9+ digits).

    *)
  2. identityPoolId : IdentityPoolId.t;
    (*

    An identity pool ID in the format REGION:GUID.

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

    A set of optional name-value pairs that map provider names to provider tokens. The available provider names for Logins are as follows: Facebook: graph.facebook.com Amazon Cognito user pool: cognito-idp.<region>.amazonaws.com/<YOUR_USER_POOL_ID>, for example, cognito-idp.us-east-1.amazonaws.com/us-east-1_123456789. Google: accounts.google.com Amazon: www.amazon.com Twitter: api.twitter.com Digits: www.digits.com

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