|
|
|
|
|
by kevinmcconnell
1655 days ago
|
|
What I've started doing (and how I cover it in the book) is using the CDK to build and deploy the Lambda code. The `GoFunction`[0] construct handles building and deploying the code, so you don't have to set anything up manually. Underneath it still happens by way of S3 & CloudFormation, but the CDK abstracts away a lot of the details, which makes it quite convenient to use. [0] https://docs.aws.amazon.com/cdk/api/latest/docs/aws-lambda-g... |
|