Module Values.GetTableRequestSource

Returns information about the table, including the table's name and current status, the keyspace name, configuration settings, and metadata. To read table metadata using GetTable, the IAM principal needs Select action permissions for the table and the system keyspace.

Sourcetype nonrec t = {
  1. keyspaceName : KeyspaceName.t;
    (*

    The name of the keyspace that the table is stored in.

    *)
  2. tableName : TableName.t;
    (*

    The name of the table.

    *)
}
Sourceval context_ : string
Sourceval make : keyspaceName:KeyspaceName.t -> tableName:TableName.t -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `String of KeyspaceName.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