Data.Cloud.AmazonAPI.TAmazonTableService.DeleteTable
[–] Properties | |
---|---|
Type: function | |
Visibility: public | |
Source: Data.Cloud.AmazonAPI.pas Data.Cloud.AmazonAPI.hpp
| |
Unit: Data.Cloud.AmazonAPI | |
Parent: TAmazonTableService |
Delphi
function DeleteTable(const TableName: string; ResponseInfo: TCloudResponseInfo = nil): Boolean;
C++
bool __fastcall DeleteTable(const System::UnicodeString TableName, Data::Cloud::Cloudapi::TCloudResponseInfo* ResponseInfo = (Data::Cloud::Cloudapi::TCloudResponseInfo*)(0x0));
Description
Marks the table for deletion and hides it from future calls when querying the list of available tables.
However, the table is not deleted from the server right away; for a short time after marking it for deletion, you will not be able to create a new table with the same name.
The method returns True if the deletion is successful, False otherwise.
The following table shows the significance of the parameters:
Parameter | Description |
---|---|
|
The name of the table (Domain) to delete. |
|
The optional class for storing response info into. |