Values.ConnectAppAuthorizationRequestSourceEstablishes a connection between Amazon Web Services AppFabric and an application, which allows AppFabric to call the APIs of the application.
type nonrec t = {appBundleIdentifier : Identifier.t;The Amazon Resource Name (ARN) or Universal Unique Identifier (UUID) of the app bundle that contains the app authorization to use for the request.
*)appAuthorizationIdentifier : Identifier.t;The Amazon Resource Name (ARN) or Universal Unique Identifier (UUID) of the app authorization to use for the request.
*)authRequest : AuthRequest.t option;Contains OAuth2 authorization information. This is required if the app authorization for the request is configured with an OAuth2 (oauth2) authorization type.
*)}val make :
?authRequest:??? ->
appBundleIdentifier:Identifier.t ->
appAuthorizationIdentifier:Identifier.t ->
unit ->
tval to_value :
t ->
[> `Structure of
(string
* [> `String of Identifier.t
| `Structure of (string * [> `String of RedirectUri.t ]) list ])
list ]