Whatever message this page gives is out now! Go check it out!

DescribeGlobalTable

Last update:
May 18, 2026

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

Figure: DescribeGlobalTable output
DescribeGlobalTable output

Share this page

Was this page helpful?
We're glad. Tell us how this page helped.
We're sorry. Can you tell us what didn't work for you?
Thank you for your feedback. Your response will help improve this page.

On this page