Module Values_1.DataTableSummarySource

A data table summary.

Sourcetype nonrec t = {
  1. name : Values_0.DataTableName.t option;
    (*

    The summary's name.

    *)
  2. id : Values_0.DataTableId.t option;
    (*

    The summary's ID.

    *)
  3. arn : Values_0.ARN.t option;
    (*

    The summary's ARN.

    *)
  4. lastModifiedTime : Values_0.Timestamp.t option;
    (*

    The summary's last modified time.

    *)
  5. lastModifiedRegion : Values_0.RegionName.t option;
    (*

    The summary's last modified region.

    *)
}
Sourceval make : ?name:??? -> ?id:??? -> ?arn:??? -> ?lastModifiedTime:??? -> ?lastModifiedRegion:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `String of Values_0.DataTableName.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