@spikedpunch/forge-plugin-s3
TypeScript icon, indicating that this package has built-in type declarations

0.1.1 • Public • Published

forge-plugin-s3

An S3 plugin for forge

Usage

//...
plugins: [
   { name: 's3', plugin: new S3Plugin({
      accessKeyId: 'XXXX'
      secretAccessKey: 'XXXX',
      region: 'us-west-2'
   })}
],
// Step
{
   alias: 's3',
   plugin: 's3',
   // If 'use' is provided, this will write to S3, otherwise
   // this will read from S3
   use: 'xxx',
   // (Optional) accessKeyId, accessKeyId, and region must be provided here
   // or in the Plugin's constructor
   accessKeyId: 'XXX'
   secretAccessKey: 'XXX'
   region: 'us-west-2',
   // (Required) the bucket name
   bucket: 's3-bucket-name',
   // (Required) The key
   key: 's3-key',
   // Optional S3.ClientConfiguration options
   s3Options: {}
}

Readme

Keywords

none

Package Sidebar

Install

npm i @spikedpunch/forge-plugin-s3

Weekly Downloads

3

Version

0.1.1

License

ISC

Unpacked Size

41.1 kB

Total Files

20

Last publish

Collaborators

  • spikedpunchvictim