Socket
Socket
Sign inDemoInstall

aws-async-ec2

Package Overview
Dependencies
1
Maintainers
1
Versions
2
Alerts
File Explorer

Advanced tools

Install Socket

Detect and block malicious and high-risk dependencies

Install

    aws-async-ec2

async wrapper for aws-sdk EC2 API


Version published
Maintainers
1
Install size
8.83 kB
Created

Readme

Source

Async wrapper for AWS SDK EC2 API.

EC2 Usage

const AWS = require("aws-sdk");
const {EC2} = require("aws-async-ec2");
const ec2 = new EC2(AWS);

async function listInstanceIds() {
    for await (const {RegionName} of ec2.describeRegions()) {
        console.log("instances in", RegionName);

        const ec2region = ec2.selectRegion(RegionName);

        for await (const instance of ec2region.describeInstances()) {
            console.log(instance.InstanceId);
        }
    }
}

FAQs

Last updated on 11 Oct 2021

Did you know?

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc