s3objectgenerator
TypeScript icon, indicating that this package has built-in type declarations

0.1.1 • Public • Published

S3ObjectGenerator

A dev tool that generates objects in an AWS S3 Bucket. Creates sudo-random prefixes object names with prefixes. Currently only puts empty although named objects.

Status

WIP. Complete testing needs a few kinks worked out before 1.0.

Usage

Created to help in integration testing of s3nuke, this usage example is from a spec file.

import * as s3g from "s3objectgenerator";

...

const generateParams: s3g.IS3ObjectGenerateRequest = {
  Bucket: testBucketName,
  Client: s3,
  Quantity: 1365,
};

it("should empty the bucket", () => {
  s3g.generateSync(generateParams);

...

Package Sidebar

Install

npm i s3objectgenerator

Weekly Downloads

0

Version

0.1.1

License

ISC

Last publish

Collaborators

  • tomdavidson