DescribeGlobalTable

Description

This function returns information about a global table, already created.

For more information, see DescribeGlobalTable.

Category

History

ColdFusion (2021 release): Added this function.

Syntax

serviceHandle.describeGlobalTable(requestParameters)

Parameters

See request parameters for DescribeGlobalTable.

Example

<cfscript> 
  cred = { 
    "credentialAlias" : "myalias", 
    "vendorName" : "AWS", 
    "region" : "us-east-2", 
    "secretAccessKey" : "xxxxx", 
    "accessKeyId" : "xxxx" 
  } 
  config = { 
    "serviceName" = "DYNAMODB" 
  } 
  dynamo = getCloudService(cred, config) 
  // describe Global Table "Movies002" 
  describeGlobalTableStruct={ 
    "GlobalTableName": "Movies002" 
  } 
  response=dynamo.describeGlobalTable(describeGlobalTableStruct) 
  writeDump(response) 
</cfscript> 

Output

DescribeGlobalTable output
DescribeGlobalTable output

 Adobe

Get help faster and easier

New user?