Module Values.CreateApplicationResponseSource

Creates an application, optionally including an AWS SAM file to create the first application version in the same call.

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

    The application Amazon Resource Name (ARN).

    *)
  2. author : string option;
    (*

    The name of the author publishing the app.Minimum length=1. Maximum length=127.Pattern "^[a-z0-9](([a-z0-9]|-(?!-))*[a-z0-9])?$";

    *)
  3. creationTime : string option;
    (*

    The date and time this resource was created.

    *)
  4. description : string option;
    (*

    The description of the application.Minimum length=1. Maximum length=256

    *)
  5. homePageUrl : string option;
    (*

    A URL with more information about the application, for example the location of your GitHub repository for the application.

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

    *)
  7. 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+\\-_:\\/@]+$";

    *)
  8. licenseUrl : string option;
    (*

    A link to a license file of the app that matches the spdxLicenseID value of your application.Maximum size 5 MB

    *)
  9. name : string option;
    (*

    The name of the application.Minimum length=1. Maximum length=140Pattern: "[a-zA-Z0-9\\-]+";

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

    *)
  11. spdxLicenseId : string option;
    (*

    A valid identifier from https://spdx.org/licenses/.

    *)
  12. verifiedAuthorUrl : string option;
    (*

    The URL to the public profile of a verified author. This URL is submitted by the author.

    *)
  13. version : Version.t option;
    (*

    Version information about the application.

    *)
}
Sourcetype nonrec error = [
  1. | `BadRequestException of BadRequestException.t
  2. | `ConflictException of ConflictException.t
  3. | `ForbiddenException of ForbiddenException.t
  4. | `InternalServerErrorException of InternalServerErrorException.t
  5. | `TooManyRequestsException of TooManyRequestsException.t
  6. | `Unknown_operation_error of string * string option
]
Sourceval make : ?applicationId:??? -> ?author:??? -> ?creationTime:??? -> ?description:??? -> ?homePageUrl:??? -> ?isVerifiedAuthor:??? -> ?labels:??? -> ?licenseUrl:??? -> ?name:??? -> ?readmeUrl:??? -> ?spdxLicenseId:??? -> ?verifiedAuthorUrl:??? -> ?version:??? -> unit -> t
Sourceval 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 ]
Sourceval 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 ]
Sourceval error_to_json : error -> Yojson.Safe.t
Sourceval 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 ]
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