Data.Cloud.AmazonAPI.TAmazonTableService.GetRows

From RAD Studio API Documentation
Jump to: navigation, search

Delphi

function GetRows(const TableName: string;  MaxNumberOfItems: Integer = 0; ResponseInfo: TCloudResponseInfo = nil; const NextToken: string = ''): TList<TCloudTableRow>;

C++

System::Generics::Collections::TList__1<Data::Cloud::Cloudapi::TCloudTableRow*>* __fastcall GetRows(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 all columns from the rows for the specified table, or nil if the call failed.

This selects all the attributes 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