Data.Cloud.AmazonAPI.TAmazonTableService.CreateTable

From RAD Studio API Documentation
Jump to: navigation, search

Delphi

function CreateTable(const TableName: string; ResponseInfo: TCloudResponseInfo = nil): Boolean;

C++

bool __fastcall CreateTable(const System::UnicodeString TableName, 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

Creates a table (Domain) with the given name.

The name length can be in the range from 3 through 255 characters and can contain the following characters: a-z, A-Z, 0-9, '_', '-', and '.'.

The method returns True if the creation was successful, False otherwise.

The following table shows the significance of the parameters:

Parameter Description

TableName

The name of the table to create.

ResponseInfo

The optional class for storing response info into.

See Also