Posts by Tiago Fedatto • 1 point
1 post
-
0
votes1
answer40
viewsA: What is the correct way to use AWS Iot.describeCertificate()? I cannot access the function asynchronously
Try it this way const AWS = require('aws-sdk') const iot = new AWS.Iot() let cert = {} descCert = async (params) => { console.log("start descCert") console.log("params") console.log(params) try {…