@paulbarmstrong/cdk-managed-objects-bucket
v0.1.7-alpha
Published
A CDK construct representing a bucket and the objects within it, which can be defined by an Asset or directly in the CDK. It extends the Bucket construct.
Downloads
59
Maintainers
Readme
cdk-managed-objects-bucket
Experimental Notice
This package is brand new and highly experimental so breaking changes may be made without notice.
About
ManagedObjectsBucket is a CDK construct extending the Bucket construct to provide object management. An "object manager" custom CFN resource internal to the ManagedObjectsBucket construct mutates objects in the bucket to align the bucket with the objects defined in the CDK definition. The objects in the bucket are otherwise read-only.
Objects can be defined by:
- An Asset, by calling addObjectsFromAsset.
- CDK code, by calling addObject.
Benefits over BucketDeployment include:
- ManagedObjectsBucket has much stronger ownership of its objects in the bucket since it puts a layer of encapsulation around the bucket itself and does not let any other identities mutate objects within the bucket. That eliminates the possibility of the bucket's objects being mistaken as anything other than objects defined and managed by mechanisms within the CDK.
- ManagedObjectsBucket allows adding objects based on an Asset. That gives consumers more configurability than only allowing a local path to be specified. Asset allows consumers to, for example, run some code to bundle their local files as a part of the CDK synthesis process.
- ManagedObjectsBucket updates are multiple times faster than BucketDeployment updates. That's
because BucketDeployment's default python runtime lambda function loads
the entire AWS CLI in order to do
aws s3 sync
, while ManagedObjectsBucket's lambda function uses the s3-sync-client NPM package for it. - ManagedObjectsBucket allows creating CloudFront invalidations after object updates without waiting for the invalidation to complete. That allows stack updates to be much faster for consumers who need to have an invalidation created when objects have been updated, but don't actually need to wait for it to complete.
Limitations
- The total size of objects in the bucket must not exceed 5 gigabytes.
Installation
npm install @paulbarmstrong/cdk-managed-objects-bucket
Usage
This is an example of how it may be used in a CDK app:
import * as cdk from "aws-cdk-lib"
import * as logs from "aws-cdk-lib/aws-logs"
import * as s3_assets from "aws-cdk-lib/aws-s3-assets"
import { ManagedObjectsBucket } from "@paulbarmstrong/cdk-managed-objects-bucket"
import { Construct } from "constructs"
export class MyStack extends cdk.Stack {
constructor(scope: Construct, id: string, props?: cdk.StackProps) {
super(scope, id, props)
const bucket = new ManagedObjectsBucket(this, "Bucket", {
bucketName: "my-example-managed-objects-bucket"
})
bucket.addObjectsFromAsset({
asset: new s3_assets.Asset(this, "MyAsset", { path: "./my-local-files" })
})
bucket.addObject({
key: "config.json",
body: JSON.stringify({ "bucketArn": bucket.bucketArn })
})
}
}
Documentation
Please see the low level documentation for more details.
Issues
If you have any issue with the package I would like to hear about it. Please create an issue on GitHub.