Whatever message this page gives is out now! Go check it out!
serviceHandle.listTagsOfResource(requestParameters)<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>