Use Case
I'd like to be able to define a set of AWS Lambda layers that will be loaded into my cloud.Functions:
new cloud.Function(inflight () => {
// code that depends on some lambda layer!
});
This should also for functions that are implicitly created (e.g. as cloud.Api handlers or used by some method:
class MyClass {
pub inflight foo() {
// do something that depends on a lambda layer
}
}
let c = new MyClass();
let api = new cloud.Api();
api.get("/", inflight () => {
c.foo();
});
Proposed Solution
No response
Implementation Notes
No response
Component
No response
Community Notes
- Please vote by adding a 👍 reaction to the issue to help us prioritize.
- If you are interested to work on this issue, please leave a comment.
- If this issue is labeled needs-discussion, it means the spec has not been finalized yet. Please reach out on the #dev channel in the Wing Discord.
Use Case
I'd like to be able to define a set of AWS Lambda layers that will be loaded into my
cloud.Functions:This should also for functions that are implicitly created (e.g. as
cloud.Apihandlers or used by some method:Proposed Solution
No response
Implementation Notes
No response
Component
No response
Community Notes