aws-samples / aws-cdk-examples

Example projects using the AWS CDK
Apache License 2.0
4.97k stars 2.11k forks source link

feat: add lambda-custom-rumtime example #889

Closed pahud closed 12 months ago

pahud commented 1 year ago

Add a new example for Lamda custom runtime using AWS CDK.

This example allows user to specify user executable like:

new CustomRuntimeFunction(this, 'Func', {
  userExecutable: 'main.sh',
});

See README for more details.


By submitting this pull request, I confirm that my contribution is made under the terms of the Apache 2.0 license.