Cập nhật gần đây nhất vào
26 thg 12, 2022
Description
This function returns an array of tables associated with your AWS account.
For more information, see ListTables.
Category
History
ColdFusion (2021 release): Added this function.
Syntax
serviceHandle.listTables(requestParameters)
Parameters
See parameters for ListTables.
Example
<cfscript> cred = { "credentialAlias" : "myalias", "vendorName" : "AWS", "region" : "us-east-2", "secretAccessKey" : "xxxxx", "accessKeyId" : "xxxx" } conf={ "serviceName"="DYNAMODB" } dynamo=getCloudService(cred, conf) params = { "Limit": 30 } result = dynamo.ListTables(params); writeDump(result) </cfscript>
Output