Module Values.UpdateApplicationRequestSource

Updates metadata about an application.

Sourcetype nonrec t = {
  1. configurationId : ApplicationId.t;
    (*

    Configuration ID of the application to be updated.

    *)
  2. name : ApplicationName.t option;
    (*

    New name of the application to be updated.

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

    New description of the application to be updated.

    *)
  4. wave : ApplicationWave.t option;
    (*

    The new migration wave of the application that you want to update.

    *)
}
Sourceval context_ : string
Sourceval make : ?name:??? -> ?description:??? -> ?wave:??? -> configurationId:ApplicationId.t -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `String of ApplicationId.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