cdk-lambda-extensions
AWS CDK construct library that allows you to add any AWS Lambda Extensions to the Lambda functions.
Sample
To add s3-logs-extension-demo
extension from the aws-lambda-extensions github repository:
bucket = s3.Bucket(self, "DemoBucket")
fn = Function(self, "Handler", {
"code": lambda_.Code.from_asset(path.join(__dirname, "../aws-lambda-extensions/s3-logs-extension-demo/functionsrc")),
"runtime": lambda_.Runtime.PYTHON_3_8,
"handler": "lambda_function.lambda_handler",
"memory_size": 128,
"environment": {
"S3_BUCKET_NAME": bucket.bucket_name
}
})
bucket.grant_write(fn)
fn.add_extension(S3LogsExtension(self, "S3BucketExtention").extension)