swift-aws-lambda-runtime
swift-aws-lambda-runtime copied to clipboard
Swift implementation of AWS Lambda Runtime
We do something potentially dangerous here: https://github.com/swift-server/swift-aws-lambda-runtime/pull/144 We extend a type we don't own with an unprefixed method that only takes arguments we don't own.
### Expected behavior I am using swift as a appsync lambda resolver with the following GraphQL schema. ```GraphQL input TestInput { ids: [String] } testMutation(input: TestInput!): String ``` According to...
AWS recently released [AWS Lambda Container Image Support](https://aws.amazon.com/blogs/aws/new-for-aws-lambda-container-image-support/) which library users may find useful. Need to add documentation for this new deployment scheme
### Expected behavior Obtain information passed from a Lambda Authorizer into Lambda. Note: This is the REST API (V1) ### Actual behavior Inability to access information due to parameter not...
AWS launched https://aws-otel.github.io so they have a collector available now that accepts otel. We have the following pieces ready: - https://github.com/apple/swift-distributed-tracing - an minimal otel Tracer compatible with the above...
Add an Example to show how to build a Serverless REST API using: - APIGateway - Lambda - DynamoDB ### Motivation: To encourage the adoption of the library I suggest...
In October 2020 AWS has released [Lambda Extensions](https://aws.amazon.com/about-aws/whats-new/2020/10/aws-lambda-extensions-integrate-operational-tools/). The official Lambda Runtimes already support the new Extension API. We should investigate the support use cases and consider supporting the new...
### Motivation We want to be able to mock different aws service behaviors with the `Lambda.LocalServer`. ### Changes - The `Lambda.LocalServer` now opens two ports: One for incoming requests (`InvokeHandler`)...
This adopts the baggage API in the shape of https://github.com/slashmo/gsoc-swift-baggage-context/pull/34 I have discussed with @fabianfett and @tomerd a little bit about this. --- This adoption is _preferable_ I believe, because...