Module Values.CreateApplicationVersionInputSource

Create a version request.

Sourcetype nonrec t = {
  1. sourceCodeArchiveUrl : string option;
    (*

    A link to the S3 object that contains the ZIP archive of the source code for this version of your application.Maximum size 50 MB

    *)
  2. sourceCodeUrl : string option;
    (*

    A link to a public repository for the source code of your application, for example the URL of a specific GitHub commit.

    *)
  3. templateBody : string option;
    (*

    The raw packaged AWS SAM template of your application.

    *)
  4. templateUrl : string option;
    (*

    A link to the packaged AWS SAM template of your application.

    *)
}
Sourceval make : ?sourceCodeArchiveUrl:??? -> ?sourceCodeUrl:??? -> ?templateBody:??? -> ?templateUrl:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `String of string ]) 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