Data.Cloud.AmazonAPI.TAmazonTableService.GetTableMetadataXML
[–] Properties | |
---|---|
Type: function | |
Visibility: public | |
Source: Data.Cloud.AmazonAPI.pas Data.Cloud.AmazonAPI.hpp
| |
Unit: Data.Cloud.AmazonAPI | |
Parent: TAmazonTableService |
Delphi
function GetTableMetadataXML(const TableName: string; ResponseInfo: TCloudResponseInfo = nil): string;
C++
System::UnicodeString __fastcall GetTableMetadataXML(const System::UnicodeString TableName, Data::Cloud::Cloudapi::TCloudResponseInfo* ResponseInfo = (Data::Cloud::Cloudapi::TCloudResponseInfo*)(0x0));
Description
Returns a list of metadata associated with the given table, in XML representation.
GetTableMetadataXML returns the following information:
Information | Description |
---|---|
|
The date/time the metadata was last modified. |
|
The number of items in the table (Domain). |
|
The total number of name/value pairs. |
|
The number of (unique) attribute names in the pairs. |
|
The total size (in bytes) of all item names in the table. |
|
The total size (in bytes) of all attribute values. |
|
The total size (in bytes) of all unique attribute names. |
The following table shows the significance of the parameters:
Parameter | Description |
---|---|
|
The name of the table (Domain) to get metadata for. |
|
The optional class for storing response info into. |