Module Values.DeleteApplicationVersionMessageSource

Request to delete an application version.

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

    The name of the application to which the version belongs.

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

    The label of the version to delete.

    *)
  3. deleteSourceBundle : DeleteSourceBundle.t option;
    (*

    Set to true to delete the source bundle from your storage bucket. Otherwise, the application version is deleted only from Elastic Beanstalk and the source bundle remains in Amazon S3.

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