Module Values_2.TemplateVersionSummarySource

The template version.

Sourcetype nonrec t = {
  1. arn : Values_0.Arn.t option;
    (*

    The Amazon Resource Name (ARN) of the template version.

    *)
  2. versionNumber : Values_1.VersionNumber.t option;
    (*

    The version number of the template version.

    *)
  3. createdTime : Values_0.Timestamp.t option;
    (*

    The time that this template version was created.

    *)
  4. status : Values_0.ResourceStatus.t option;
    (*

    The status of the template version.

    *)
  5. description : Values_1.VersionDescription.t option;
    (*

    The description of the template version.

    *)
}
Sourceval make : ?arn:??? -> ?versionNumber:??? -> ?createdTime:??? -> ?status:??? -> ?description:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Enum of string | `Long of Values_1.VersionNumber.t | `String of Values_0.Arn.t | `Timestamp of Values_0.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