Module Values.UpdateApplicationRequestSource

Updates an application and creates a new version.

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

    The unique identifier of the application you want to update.

    *)
  2. currentApplicationVersion : Version.t;
    (*

    The current version of the application to update.

    *)
  3. definition : Definition.t option;
    (*

    The application definition for this application. You can specify either inline JSON or an S3 bucket location.

    *)
  4. description : EntityDescription.t option;
    (*

    The description of the application to update.

    *)
}
Sourceval context_ : string
Sourceval make : ?definition:??? -> ?description:??? -> applicationId:Identifier.t -> currentApplicationVersion:Version.t -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Integer of Version.t | `String of Identifier.t | `Structure of (string * [> `String of StringFree65000.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