Module Values.RuntimeVersionSource

This structure contains information about one canary runtime version. For more information about runtime versions, see Canary Runtime Versions.

Sourcetype nonrec t = {
  1. versionName : String_.t option;
    (*

    The name of the runtime version. For a list of valid runtime versions, see Canary Runtime Versions.

    *)
  2. description : String_.t option;
    (*

    A description of the runtime version, created by Amazon.

    *)
  3. releaseDate : Timestamp.t option;
    (*

    The date that the runtime version was released.

    *)
  4. deprecationDate : Timestamp.t option;
    (*

    If this runtime version is deprecated, this value is the date of deprecation.

    *)
}
Sourceval make : ?versionName:??? -> ?description:??? -> ?releaseDate:??? -> ?deprecationDate:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `String of String_.t | `Timestamp of Timestamp.t ]) 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