Module Values.TableClassSummarySource

Contains details of the table class.

Sourcetype nonrec t = {
  1. tableClass : TableClass.t option;
    (*

    The table class of the specified table. Valid values are STANDARD and STANDARD_INFREQUENT_ACCESS.

    *)
  2. lastUpdateDateTime : Date.t option;
    (*

    The date and time at which the table class was last updated.

    *)
}
Sourceval make : ?tableClass:??? -> ?lastUpdateDateTime:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Enum of string | `Timestamp of Date.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