Module Values.ConnectAppAuthorizationRequestSource

Establishes a connection between Amazon Web Services AppFabric and an application, which allows AppFabric to call the APIs of the application.

Sourcetype nonrec t = {
  1. 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.

    *)
  2. appAuthorizationIdentifier : Identifier.t;
    (*

    The Amazon Resource Name (ARN) or Universal Unique Identifier (UUID) of the app authorization to use for the request.

    *)
  3. 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.

    *)
}
Sourceval context_ : string
Sourceval make : ?authRequest:??? -> appBundleIdentifier:Identifier.t -> appAuthorizationIdentifier:Identifier.t -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `String of Identifier.t | `Structure of (string * [> `String of RedirectUri.t ]) list ]) 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