Module Values.SystemTemplateSummarySource

An object that contains information about a system.

Sourcetype nonrec t = {
  1. id : Urn.t option;
    (*

    The ID of the system.

    *)
  2. arn : Arn.t option;
    (*

    The ARN of the system.

    *)
  3. revisionNumber : Version.t option;
    (*

    The revision number of the system.

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

    The date when the system was created.

    *)
}
Sourceval make : ?id:??? -> ?arn:??? -> ?revisionNumber:??? -> ?createdAt:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Long of Version.t | `String of Urn.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