Module Values.TableSummarySource

Contains details about a table.

Sourcetype nonrec t = {
  1. namespace : NamespaceList.t option;
    (*

    The name of the namespace.

    *)
  2. name : TableName.t option;
    (*

    The name of the table.

    *)
  3. type_ : TableType.t option;
    (*

    The type of the table.

    *)
  4. tableARN : TableARN.t option;
    (*

    The Amazon Resource Name (ARN) of the table.

    *)
  5. createdAt : SyntheticTimestamp_date_time.t option;
    (*

    The date and time the table was created at.

    *)
  6. modifiedAt : SyntheticTimestamp_date_time.t option;
    (*

    The date and time the table was last modified at.

    *)
  7. managedByService : String_.t option;
    (*

    The Amazon Web Services service managing this table, if applicable. For example, a replicated table is managed by the S3 Tables replication service.

    *)
  8. namespaceId : NamespaceId.t option;
    (*

    The unique identifier for the namespace that contains this table.

    *)
  9. tableBucketId : TableBucketId.t option;
    (*

    The unique identifier for the table bucket that contains this table.

    *)
}
Sourceval make : ?namespace:??? -> ?name:??? -> ?type_:??? -> ?tableARN:??? -> ?createdAt:??? -> ?modifiedAt:??? -> ?managedByService:??? -> ?namespaceId:??? -> ?tableBucketId:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Enum of string | `List of [> `String of NamespaceName.t ] list | `String of TableName.t | `Timestamp of SyntheticTimestamp_date_time.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