Data.Cloud.AmazonAPI.TAmazonTableService.GetTableMetadata

From RAD Studio API Documentation
Jump to: navigation, search

Delphi

function GetTableMetadata(const TableName: string; ResponseInfo: TCloudResponseInfo = nil): TStrings;

C++

System::Classes::TStrings* __fastcall GetTableMetadata(const System::UnicodeString TableName, Data::Cloud::Cloudapi::TCloudResponseInfo* ResponseInfo = (Data::Cloud::Cloudapi::TCloudResponseInfo*)(0x0));

Properties

Type Visibility Source Unit Parent
function public
Data.Cloud.AmazonAPI.pas
Data.Cloud.AmazonAPI.hpp
Data.Cloud.AmazonAPI TAmazonTableService

Description

Returns a list of metadata associated with the given table, or nil if a failure occurred.

GetTableMetadata returns the following information:

Information Description

Timestamp

The date/time the metadata was last modified.

ItemCount

The number of items in the table (Domain).

AttributeValueCount

The total number of name/value pairs.

AttributeNameCount

The number of (unique) attribute names in the pairs.

ItemNamesSizeBytes

The total size (in bytes) of all item names in the table.

AttributeValuesSizeBytes

The total size (in bytes) of all attribute values.

AttributeNamesSizeBytes

The total size (in bytes) of all unique attribute names.

The following table shows the significance of the parameters:

Parameter Description

TableName

The name of the table (Domain) to get metadata for.

ResponseInfo

The optional class for storing response info into.


See Also