Data.Cloud.AmazonAPI.TAmazonTableService.GetRowsXML

From RAD Studio API Documentation
Jump to: navigation, search

Delphi

function GetRowsXML(const TableName: string;  MaxNumberOfItems: Integer = 0; ItemIdOnly: Boolean = False; ResponseInfo: TCloudResponseInfo = nil; const NextToken: string = ''): string;

C++

System::UnicodeString __fastcall GetRowsXML(const System::UnicodeString TableName, int MaxNumberOfItems = 0x0, bool ItemIdOnly = false, 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 XML representation of the row (Item) IDs for the specified table.

This selects all the attributes of all the rows returned, or just the row IDs. 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.

ItemIdOnly

True to only return the item name, False to return all attributes (columns).

ResponseInfo

The optional class for storing response info into.

NextToken

Continuation token (NextToken) value from a previous request.

See Also