empty-aws-bucket

1.0.10 • Public • Published

Empty S3 Bucket

For a given S3 bucket, all objects and their versions will be deleted.

Getting Started

Run

npm install --save empty-s3-bucket

API

The first argument is the bucket name, and the second argument is an optional config object passed to the AWS SDK.

emptyBucket(bucketName, [config]);

Usage

const emptyBucket = require('empty-s3-bucket');

emptyBucket('my-bucket');

const awsConfig = {
    accessKeyId: 'AKID',
    secretAccessKey: 'SECRET',
    region: 'us-west-2'
};

emptyBucket('other-bucket', awsConfig);

Debugging

The AWSJS_DEBUG environment variable enables logging in aws-sdk. If the AWSJS_DEBUG environment variable is set this module will log debug information also.

Readme

Keywords

Package Sidebar

Install

npm i empty-aws-bucket

Weekly Downloads

69

Version

1.0.10

License

MIT

Last publish

Collaborators

  • sabrehagen