Module Values_2.TemplateSummarySource

The template summary.

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

    A summary of a template.

    *)
  2. templateId : Values_0.ShortRestrictiveResourceId.t option;
    (*

    The ID of the template. This ID is unique per Amazon Web Services Region for each Amazon Web Services account.

    *)
  3. name : Values_1.TemplateName.t option;
    (*

    A display name for the template.

    *)
  4. latestVersionNumber : Values_1.VersionNumber.t option;
    (*

    A structure containing a list of version numbers for the template summary.

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

    The last time that this template was created.

    *)
  6. lastUpdatedTime : Values_0.Timestamp.t option;
    (*

    The last time that this template was updated.

    *)
}
Sourceval make : ?arn:??? -> ?templateId:??? -> ?name:??? -> ?latestVersionNumber:??? -> ?createdTime:??? -> ?lastUpdatedTime:??? -> unit -> t
Sourceval to_value : t -> [> `Structure 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