Module Values.DeleteTableRequestSource

The DeleteTable operation deletes a table and all of its data. After a DeleteTable request is received, the specified table is in the DELETING state until Amazon Keyspaces completes the deletion. If the table is in the ACTIVE state, you can delete it. If a table is either in the CREATING or UPDATING states, then Amazon Keyspaces returns a ResourceInUseException. If the specified table does not exist, Amazon Keyspaces returns a ResourceNotFoundException. If the table is already in the DELETING state, no error is returned.

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

    The name of the keyspace of the to be deleted table.

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

    The name of the table to be deleted.

    *)
}
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