aws-async-route53
v0.0.2
Published
async wrapper for aws-sdk Route53 API
Downloads
6
Readme
Async wrapper for AWS SDK Route53 API.
Route53 Usage
const AWS = require("aws-sdk");
const {Route53} = require("aws-async-route53");
const route53 = new Route53(AWS);
async function listHostedZones() {
for await (const zone of route53.listHostedZones()) {
console.log(zone.Id, zone.Name);
}
}