delete-aws-bucket
v1.0.5
Published
Delete an Amazon S3 Bucket
Downloads
11
Readme
Delete AWS Bucket
For a given AWS S3 bucket, all objects, their versions, and the bucket will be deleted.
Getting Started
Run
npm install --save delete-aws-bucket
API
The first argument is the bucket name, and the second argument is an optional config object passed to the AWS SDK.
deleteBucket(bucketName, [config]);
Usage
const deleteBucket = require('delete-aws-bucket');
deleteBucket('my-bucket');
const awsConfig = {
accessKeyId: 'AKID',
secretAccessKey: 'SECRET',
region: 'us-west-2'
};
deleteBucket('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.