Values.UpdateAppAuthorizationRequestSourceUpdates an app authorization within an app bundle, which allows AppFabric to connect to an application. If the app authorization was in a connected state, updating the app authorization will set it back to a PendingConnect state.
type nonrec t = {appBundleIdentifier : Identifier.t;The Amazon Resource Name (ARN) or Universal Unique Identifier (UUID) of the app bundle 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.
*)credential : Credential.t option;Contains credentials for the application, such as an API key or OAuth2 client ID and secret. Specify credentials that match the authorization type of the app authorization to update. For example, if the authorization type of the app authorization is OAuth2 (oauth2), then you should provide only the OAuth2 credentials.
*)tenant : Tenant.t option;Contains information about an application tenant, such as the application display name and identifier.
*)}val make :
?credential:??? ->
?tenant:??? ->
appBundleIdentifier:Identifier.t ->
appAuthorizationIdentifier:Identifier.t ->
unit ->
tval to_value :
t ->
[> `Structure of
(string
* [> `String of Identifier.t
| `Structure of
(string
* [> `String of TenantIdentifier.t
| `Structure of (string * [> `String of String2048.t ]) list ])
list ])
list ]