Module Values.VersionSummarySource

An application version summary.

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

    The application Amazon Resource Name (ARN).

    *)
  2. creationTime : string option;
    (*

    The date and time this resource was created.

    *)
  3. semanticVersion : string option;
    (*

    The semantic version of the application: https://semver.org/

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

    *)
}
Sourceval make : ?applicationId:??? -> ?creationTime:??? -> ?semanticVersion:??? -> ?sourceCodeUrl:??? -> 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