Data.Cloud.AmazonAPI.TAmazonBatchRow

From RAD Studio API Documentation
Jump to: navigation, search

Delphi

  TAmazonBatchRow = record
    RowId: string;
    Row: TCloudTableRow;
    ReplaceAll: Boolean;
    class function Create(const RowId: string; Row: TCloudTableRow;
                          ReplaceAll: Boolean = True): TAmazonBatchRow; static;
  end;

C++

struct DECLSPEC_DRECORD TAmazonBatchRow
{
public:
    System::UnicodeString RowId;
    Data::Cloud::Cloudapi::TCloudTableRow* Row;
    bool ReplaceAll;
    static TAmazonBatchRow __fastcall Create(const System::UnicodeString RowId, Data::Cloud::Cloudapi::TCloudTableRow* Row, bool ReplaceAll = true);
};

Properties

Type Visibility Source Unit Parent
record
struct
public
Data.Cloud.AmazonAPI.pas
Data.Cloud.AmazonAPI.hpp
Data.Cloud.AmazonAPI Data.Cloud.AmazonAPI

Description

Represents a single row to be updated in a batch execution.

TAmazonBatchRow is a record that represents a single row to be updated in a batch execution.

See Also