Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

aws-async-ec2

Package Overview
Dependencies
Maintainers
1
Versions
2
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

aws-async-ec2

async wrapper for aws-sdk EC2 API

  • 0.0.2
  • latest
  • Source
  • npm
  • Socket score

Version published
Maintainers
1
Created
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

Package last updated on 11 Oct 2021

Did you know?

Socket

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
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc