0.4.3 • Published 5 years ago

@fmtk/s3-put-object v0.4.3

Weekly downloads
12
License
MIT
Repository
github
Last release
5 years ago

S3PutObject

Write an object with the given content to an S3 bucket. If an object is supplied to the data prop, it will be serialized, but note that numbers and booleans are converted to strings by CloudFormation.

const bucket = new s3.Bucket(this, 'Bucket');

new S3PutObject(this, 'PutObj', {
  bucket: bucket.bucketName,
  objectName: 'test/file.json',
  // the data object will be serialized
  data: {
    one: 1, // but this will be written as a string
    two: 'two',
  },
});
0.4.3

5 years ago

0.4.2

5 years ago

0.4.1

5 years ago

0.4.0

5 years ago

0.3.0

5 years ago

0.2.2

5 years ago

0.2.1

5 years ago

0.2.0

5 years ago

0.1.4

5 years ago

0.1.3

5 years ago

0.1.1

5 years ago

0.1.0

5 years ago