Hello SST :wave: do we have an example of direct i...
# help
h
Hello SST đź‘‹ do we have an example of direct integration of APIGW to SQS ? I tried to look at all the construct methods on APIGW and SQS and couldn't find anything My worry is that if I use CDK constructs I would lose the local development benefits. Is that true ?
ö
I don’t think you would lose them
SST Constructs themselves are built on top of CDK constructs. You’re free to include whatever CDK resource you wish.
t
as long as you're using
sst.Function
(which you can pass into anything expecting cdk.Function) everything will just work
ö
So the local development is actually lambda development right? I mean for example, he cannot get an insight into queue
But rather if he adds Lambda as a target to the Queue, right?
t
That's right - we really only do magic on sst.Function everything else is just normal
h
Oh thats awesome. If I am able to use sst Function with CDK constructs it will actually be the ultimate solution to my problem. Thanks @Ă–mer Toraman and @thdxr