Values.UpdateApplicationRequestSourceUpdates an application and creates a new version.
type nonrec t = {applicationId : Identifier.t;The unique identifier of the application you want to update.
*)currentApplicationVersion : Version.t;The current version of the application to update.
*)definition : Definition.t option;The application definition for this application. You can specify either inline JSON or an S3 bucket location.
*)description : EntityDescription.t option;The description of the application to update.
*)}val make :
?definition:??? ->
?description:??? ->
applicationId:Identifier.t ->
currentApplicationVersion:Version.t ->
unit ->
tval to_value :
t ->
[> `Structure of
(string
* [> `Integer of Version.t
| `String of Identifier.t
| `Structure of (string * [> `String of StringFree65000.t ]) list ])
list ]