Values.CreateApplicationResponseSourceCreates an application, optionally including an AWS SAM file to create the first application version in the same call.
type nonrec t = {applicationId : string option;The application Amazon Resource Name (ARN).
*)creationTime : string option;The date and time this resource was created.
*)description : string option;The description of the application.Minimum length=1. Maximum length=256
*)homePageUrl : string option;A URL with more information about the application, for example the location of your GitHub repository for the application.
*)isVerifiedAuthor : bool option;Whether the author of this application has been verified. This means means that AWS has made a good faith review, as a reasonable and prudent service provider, of the information provided by the requester and has confirmed that the requester's identity is as claimed.
*)labels : string list option;Labels to improve discovery of apps in search results.Minimum length=1. Maximum length=127. Maximum number of labels: 10Pattern: "^[a-zA-Z0-9+\\-_:\\/@]+$";
*)licenseUrl : string option;A link to a license file of the app that matches the spdxLicenseID value of your application.Maximum size 5 MB
*)name : string option;The name of the application.Minimum length=1. Maximum length=140Pattern: "[a-zA-Z0-9\\-]+";
*)readmeUrl : string option;A link to the readme file in Markdown language that contains a more detailed description of the application and how it works.Maximum size 5 MB
*)spdxLicenseId : string option;A valid identifier from https://spdx.org/licenses/.
*)verifiedAuthorUrl : string option;The URL to the public profile of a verified author. This URL is submitted by the author.
*)version : Version.t option;Version information about the application.
*)}type nonrec error = [ | `BadRequestException of BadRequestException.t| `ConflictException of ConflictException.t| `ForbiddenException of ForbiddenException.t| `InternalServerErrorException of InternalServerErrorException.t| `TooManyRequestsException of TooManyRequestsException.t| `Unknown_operation_error of string * string option ]val error_of_json :
string ->
Yojson.Safe.t ->
[> `BadRequestException of BadRequestException.t
| `ConflictException of ConflictException.t
| `ForbiddenException of ForbiddenException.t
| `InternalServerErrorException of InternalServerErrorException.t
| `TooManyRequestsException of TooManyRequestsException.t
| `Unknown_operation_error of string * string option ]val error_of_xml :
string ->
Awso.Xml.t ->
[> `BadRequestException of BadRequestException.t
| `ConflictException of ConflictException.t
| `ForbiddenException of ForbiddenException.t
| `InternalServerErrorException of InternalServerErrorException.t
| `TooManyRequestsException of TooManyRequestsException.t
| `Unknown_operation_error of string * string option ]val to_value :
t ->
[> `Structure of
(string
* [> `Boolean of bool
| `List of [> `String of string ] list
| `String of string
| `Structure of
(string
* [> `Boolean of bool
| `List of
[> `Enum of string
| `Structure of
(string
* [> `Boolean of bool
| `Integer of int
| `List of [> `String of string ] list
| `String of string ])
list ]
list
| `String of string ])
list ])
list ]