Socket
Socket
Sign inDemoInstall

@dustfoundation/dynamodb-observer

Package Overview
Dependencies
144
Maintainers
2
Versions
5
Alerts
File Explorer

Advanced tools

Install Socket

Detect and block malicious and high-risk dependencies

Install

    @dustfoundation/dynamodb-observer

DynamoDB Observer to monitor Unit Capacity usage


Version published
Maintainers
2
Created

Readme

Source

@dustfoundation/dynamodb-observer

CI NPM Version Minimum Node.js Version

DynamoDB Observer to monitor Unit Capacity usage.

Installation

npm install --save @dustfoundation/dynamodb-observer

Usage

Default

import { DynamoDB } from '@dustfoundation/dynamodb-observer';

const client = new DynamoDB({
  region: 'eu-central-1',
  keys: { ['table-name']: 'userId' },
});

Dynamoose

import { DynamoDB } from '@dustfoundation/dynamodb-observer';
import { aws, Schema } from 'dynamoose';

const SomeSchema = new Schema({
  userId: { type: String, hashKey: true },
});

const client = new DynamoDB({
  region: 'eu-central-1',
  keys: { ['table-name']: SomeSchema.hashKey },
});
aws.ddb.set(client);

FAQs

Last updated on 09 Apr 2023

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