Module Values.UpdateApplicationVersionMessageSource

Sourcetype nonrec t = {
  1. applicationName : ApplicationName.t;
    (*

    The name of the application associated with this version. If no application is found with this name, UpdateApplication returns an InvalidParameterValue error.

    *)
  2. versionLabel : VersionLabel.t;
    (*

    The name of the version to update. If no application version is found with this label, UpdateApplication returns an InvalidParameterValue error.

    *)
  3. description : Description.t option;
    (*

    A new description for this version.

    *)
}
Sourceval context_ : string
Sourceval make : ?description:??? -> applicationName:ApplicationName.t -> versionLabel:VersionLabel.t -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `String of ApplicationName.t ]) 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