#aws-lambda #lambda #cdk #bootstrap #aws #function

bin+lib bootstrap_aws_lambdas

Bootstrap AWS Lambda Binaries with Rust

5 releases

0.0.5 Jun 23, 2024
0.0.4 Jun 22, 2024
0.0.3 Jun 22, 2024
0.0.2 Jun 21, 2024
0.0.1 Jun 21, 2024

#733 in Web programming

Download history 382/week @ 2024-06-20 13/week @ 2024-06-27 11/week @ 2024-07-04

192 downloads per month

MIT license

9KB
136 lines

Bootstrap AWS Lambda Functions

Crates.io

Use this package to prepare rust binaries so they can be used with CDK lambda constructs. CDK lambda construct expects binary to be named bootstrap.

Usage

Install package as cli tool

cargo install bootstrap_aws_lambdas

and then run:

bootstrap_aws_lambdas <source_path> <target_path>

It is going to discover all exwcutable binaries in source_path and copy eash of them into <target_path>/<binary_name>/bootstrap.

Example

Create rust app and build binaries (for example aws_lambdas_workspace app which is going to build bin_one and bin_two binaries).

Run

bootstrap_aws_lambdas ./target/debug ./build

This package will discover exaecutable binaries bin_one and bin_two and copy them from ./target/debug to ./build/<binary_name>/bootstrap:

aws_lambdas_workspace/target/debug
├── bin_one
├── bin_one.d
├── bin_two
├── bin_two.d
├── build
├── deps
├── examples
└── incremental

to:

aws_lambdas_workspace/build
├── bin_one
   └── bootstrap
└── bin_two
    └── bootstrap

You are now ready to use any AWS CDK Lambda Construct which can work with binaries. You can check typescript example below:

import * as cdk from "aws-cdk-lib";
import { Construct } from "constructs";
import * as lambda from "aws-cdk-lib/aws-lambda";
import path = require("node:path");

export class CdkTypescriptStack extends cdk.Stack {
  constructor(scope: Construct, id: string, props?: cdk.StackProps) {
    super(scope, id, props);

    // Define the path to the Rust project
    const rustProjectPath = path.join(__dirname, "..", "lambdas");

    const binOneLambda = new lambda.Function(this, "MyFirstRustLambda", {
      runtime: lambda.Runtime.PROVIDED_AL2,
      handler: "bootstrap",
      // this construct expects bootstrap binary at <project_root>/lambdas/bin_one/bootstrap
      code: lambda.Code.fromAsset(path.join(rustProjectPath, "bin_one")),
      functionName: "my-bin-one-lambda",
    });

    const binTwoLambda = new lambda.Function(this, "MySecondRustLambda", {
      runtime: lambda.Runtime.PROVIDED_AL2,
      handler: "bootstrap",
      // this construct expects bootstrap binary at <project_root>/lambdas/bin_two/bootstrap
      code: lambda.Code.fromAsset(path.join(rustProjectPath, "bin_two")),
      functionName: "my-bin-two-lambda",
    });
  }
}

No runtime deps