npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2024 – Pkg Stats / Ryan Hefner

n8n-nodes-aws-sdk-v3

v3.0.3

Published

Wrapper for the AWS SDK for n8n, contains every service and operation in a very utilitarian way

Downloads

100

Readme

n8n-nodes-aws-sdk-v3

This is an n8n community node. It lets you use any AWS service by wrapping the javascript AWS SDK V2 in your n8n workflows.

This AWS SDK Node isn't affiliated or endorsed by AWS. It starts with the latest V2 version of the JS SDK and iterates through the various services already built in and exported. These are assembled into a gigantic list which the Node makes available in the UI. This isn't as beautiful as the dedicated Service Nodes, however it at least makes calling any service possible. It's called V3 because I intended to use the V3 SDK however that doesn't have the ability to iterate on every service, so it's using V2 and the various V3 modules can be imported over time after the V2 sunset date.

n8n is a fair-code licensed workflow automation platform.

Installation
Operations
Credentials
Compatibility
Usage
Resources
Version history

Installation

Follow the installation guide in the n8n community nodes documentation.

Use the package at (here)[https://www.npmjs.com/package/n8n-nodes-aws-sdk-v3].

Operations

  • Every AWS Service
    • The latest supported Api Version
      • Every Operation for each Service

Credentials

Add Credentials

Add your User Access Key and store securely; either a single User for all your actions using this Node, or a single User / credential per Node.

Compatibility

I'm not sure, only tested with n8n v1.45.1. Due to intricate linting rules, only version 3.0.0 upwards of this package works when pulled as a Community Node (you can use V1 and V2 as local/Custom Node packages).

Usage

Actions

It always presents these top 15 actions, click on any of them to bring in the Node and select a Service

Builder

Running it

Select your region, service, version, then operation. The list is ginormous (the json config is 83k lines) so it might be a bit slow on your browser.

No input

The HasInput switch should be off when the Operation doesn't have arguments or it will error (e.g. s3.listBuckets).

Editing the input

The Input JSON is untyped so you need to ensure it's correct as per the AWS SDK V2 documentation arguments for the SDK.

Error cases

The Node passes AWS errors back up as Code or Message, so you can act on those. It'll either throw or catch, up to you. If it's an auth error check your Role Permissions. It'll also conveniently log any errors to console too.

Resources

Testing

npm test will validate the config is still correct for changing over V2 => V3 services.

Version history

This is the first version, over time I might switch individual services to the AWS SDK V3 and add Input types for more popular services.