swift-aws-lambda-runtime
swift-aws-lambda-runtime copied to clipboard
Swift implementation of AWS Lambda Runtime
### Expected behavior When debugging locally, you have to send POST requests to `/invoke`. I'm trying to use another [lambda local tool](https://docs.aws.amazon.com/lambda/latest/dg/images-test.html) that is expecting the invoke url to be...
### Expected behavior I expect print statement to print to the cloud watch console logs. ### Actual behavior Printing only works via context.logger (`Lambda.Context`) ### Steps to reproduce 1) Execute...
This PR adds a `logger.trace()` in `LambdaRuntime` just before calling user's handler. It allows to see in the trace logs a string representation of the event passed by the AWS...
### Expected behavior Hello! We're looking to utilize [PhoneNumberKit](https://github.com/marmelroy/PhoneNumberKit]) which packages [Google's libphonenumber metadata](https://github.com/marmelroy/PhoneNumberKit/tree/master/PhoneNumberKit/Resources) for phone number validation. When archiving the project using the built-in AWSLambdaPackager plugin, the project successfully...
Provides a new example of AWS Lambda from a tvOS application. This example contains five elements: * **GlobantPlus**. It's the tvOS application and interacts with the AWS API Gateway and...
This PR shows proof-of-concept code to add a deployer plugin, in addition to the existing archiver plugin. The deployer plugin generates a SAM deployment descriptor and calls the SAM command...
I've opened up an issue here to cross-discuss. https://github.com/serverless/serverless/issues/11840 It would be awesome if we could support Swift directly in the Serverless Framework as it will handily scaffold the rest...
> Swift provides great Unicode support via [ICU](http://site.icu-project.org/home). Therefore, Swift-based Lambda functions include the ICU libraries which tend to be large. This impacts the download time mentioned above and an...
### Expected behavior I expect the archive plugin to package the `MyLambda` function part of the `Examples/Localdebugging` The archive command fails because part of the `MyLambda` function relies on `Shared`...
I've noticed that I can no longer use `Lambda.run`. Docs haven't been updated yet and I'm now struggling to figure out how to use the library now. I have noticed...