Module Values.AuthRequestSource

Contains authorization request information, which is required for Amazon Web Services AppFabric to get the OAuth2 access token for an application.

Sourcetype nonrec t = {
  1. redirectUri : RedirectUri.t;
    (*

    The redirect URL that is specified in the AuthURL and the application client.

    *)
  2. code : SensitiveString2048.t;
    (*

    The authorization code returned by the application after permission is granted in the application OAuth page (after clicking on the AuthURL).

    *)
}
Sourceval context_ : string
Sourceval make : redirectUri:RedirectUri.t -> code:SensitiveString2048.t -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `String of RedirectUri.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