Skip to content

FLavalliere/node-red-contrib-dynamodb

Repository files navigation

DynamoDB for NodeRED

RedConnect Approved

An set of nodes that wrap the DynamoDB functions in the AWS-SDK.

Installation

npm i node-red-contrib-dynamodb --save

Quick Start

You will need a user setup in IAM that has the following user policy/permissions:

{
    "Version": "2012-10-17",
    "Statement": [
        {
            "Sid": "AccessDynamoDBStreamOnly",
            "Effect": "Allow",
            "Action": [
                "dynamodb:DescribeStream",
                "dynamodb:GetRecords",
                "dynamodb:GetShardIterator",
                "dynamodb:ListStreams"
            ],
            "Resource": "arn:aws:dynamodb:eu-west-1:952427577739:table/example/stream/*"
        }
    ]
}

You will then need to provide the AccessKey, SecretAccessKey and Region in the configuration node to connect.

Implemented Nodes

  • Stream Node

About

NodeRED nodes for DynamoDB

Resources

Stars

Watchers

Forks

Packages

No packages published