Data.Cloud.AmazonAPI.TAmazonTableService.GetRowIDs

From RAD Studio API Documentation
Jump to: navigation, search

Delphi

function GetRowIDs(const TableName: string;  MaxNumberOfItems: Integer = 0; ResponseInfo: TCloudResponseInfo = nil; const NextToken: string = ''): TStrings;

C++

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

Properties

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

Description

Returns the row (Item) IDs for the specified table, or nil if the call failed.

GetRowIDs selects the IDs of all the rows returned. You can optionally limit the number of results. For more fine-grained control, use SelectRowsXML.

If ResponseInfo is specified and there is a NextToken value specified in the resulting XML, then a NextToken key/value pair is put in the ResponseInfo's headers list.

The following table shows the significance of the parameters:

Parameter Description

TableName

The name of the table to get the row IDs for.

MaxNumberOfItems

The number of rows to return, or 0 to return the maximum allowed number.

ResponseInfo

The optional class for storing response info into.

NextToken

Continuation token (NextToken) value from a previous request.


See Also