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

ListTagsOfResource

Last update:
May 18, 2026

Description

This function lists all tags on an Amazon DynamoDB resource.
For more information, see ListTagsOfResource.

Category

History

ColdFusion (2021 release): Added this function..

Syntax

serviceHandle.listTagsOfResource(requestParameters)

Parameters

See request parameters of ListTagsOfResource.

Example

<cfscript> 
  cred = { 
    "credentialAlias" : "myalias", 
    "vendorName" : "AWS", 
    "region" : "us-east-2", 
    "secretAccessKey" : "xxxxx", 
    "accessKeyId" : "xxxx" 
  } 
  config = { 
    "serviceName" = "DYNAMODB" 
  } 
  dynamo = getCloudService(cred, config) 
 
  // get ARN of a previously created table 
  tableName="YearlyProductCatalog" 
  // Get table ARN 
  describeStruct={ 
    "TableName":"#tableName#" 
  } 
  describeStructResponse=dynamo.describeTable(describeStruct) 
  ARN=describeStructResponse.Table.TableArn 
 
  // list tags of the ARN 
  listTageStruct={ 
    "ResourceArn":ARN 
  } 
  listTagsResourceResponse=dynamo.listTagsOfResource(listTageStruct) 
  writeOutput("The list of tags are as follows:") 
  writeDump(listTagsResourceResponse.Tags) 
</cfscript>

Output

Figure: ListTagsOfResource output
ListTagsOfResource 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