Module Values.ApplicationSummarySource

Summary of details about the application.

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

    *)
  7. name : string option;
    (*

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

    *)
  8. spdxLicenseId : string option;
    (*

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

    *)
}
Sourceval make : ?applicationId:??? -> ?author:??? -> ?creationTime:??? -> ?description:??? -> ?homePageUrl:??? -> ?labels:??? -> ?name:??? -> ?spdxLicenseId:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `List of [> `String of string ] list | `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