Module Values.UpdateAppAuthorizationRequestSource

Updates 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.

Sourcetype nonrec t = {
  1. appBundleIdentifier : Identifier.t;
    (*

    The Amazon Resource Name (ARN) or Universal Unique Identifier (UUID) of the app bundle 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. 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.

    *)
  4. tenant : Tenant.t option;
    (*

    Contains information about an application tenant, such as the application display name and identifier.

    *)
}
Sourceval context_ : string
Sourceval make : ?credential:??? -> ?tenant:??? -> appBundleIdentifier:Identifier.t -> appAuthorizationIdentifier:Identifier.t -> unit -> t
Sourceval 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 ]
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