Module Values.CreateApplicationVersionRequestSource

Creates an application version.

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

    The Amazon Resource Name (ARN) of the application.

    *)
  2. semanticVersion : string;
    (*

    The semantic version of the new version.

    *)
  3. 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

    *)
  4. 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.

    *)
  5. templateBody : string option;
    (*

    The raw packaged AWS SAM template of your application.

    *)
  6. templateUrl : string option;
    (*

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

    *)
}
Sourceval context_ : string
Sourceval make : ?sourceCodeArchiveUrl:??? -> ?sourceCodeUrl:??? -> ?templateBody:??? -> ?templateUrl:??? -> applicationId:string -> semanticVersion:string -> 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