Module Values.ApplicationSource

Details about the application.

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

    The application Amazon Resource Name (ARN).

    *)
  2. author : string;
    (*

    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;
    (*

    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;
    (*

    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.

    *)
}
Sourceval context_ : string
Sourceval make : ?creationTime:??? -> ?homePageUrl:??? -> ?isVerifiedAuthor:??? -> ?labels:??? -> ?licenseUrl:??? -> ?readmeUrl:??? -> ?spdxLicenseId:??? -> ?verifiedAuthorUrl:??? -> ?version:??? -> applicationId:string -> author:string -> description:string -> name:string -> unit -> 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