Data.Cloud.AmazonAPI.TAmazonTableService.QueryTables

From RAD Studio API Documentation
Jump to: navigation, search

Delphi

function QueryTables(const ContinuationToken: string = ''; const MaxNumberOfTables: Integer = 0;
ResponseInfo: TCloudResponseInfo = nil): TStrings;

C++

System::Classes::TStrings* __fastcall QueryTables(const System::UnicodeString ContinuationToken = System::UnicodeString(), const int MaxNumberOfTables = 0x0, 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 the tables existing in the table service account, or nil if a failure occurred.

ContinuationToken is used if there exist more than MaxNumberOfTables tables and if a previous call did not return the last of the tables, but provided a ContinuationToken in the NextToken element.

The server will use the default value of MaxNumberOfTables (100, the maximum) if you set it to a number equal to or less than zero.

The following table shows the significance of the parameters:

Parameter Description

ContinuationToken

The optional NextToken to continue table population from.

MaxNumberOfTables

The maximum number of tables to return.

ResponseInfo

The optional class for storing response info into.


See Also