Hey guys. I’m using `Queue` construct from SST, an...
# sst
a
Hey guys. I’m using
Queue
construct from SST, and now I need to attach a consumer of type
DockerImageFunction
from CDK. Is that possible to do? or I need to create a Queue + Integration with native CDK?
t
You should be able to pass that directly
We accept any kind of function
a
Mmm.
Copy code
Type 'DockerImageFunction' is not assignable to type 'FunctionDefinition | QueueConsumerProps | undefined'.
Maybe using old sst?
Copy code
SST: 0.49.1
CDK: 1.126.0
I did upgrade but still the same.
@thdxr thoughts?
t
Ah ok it might not accept a function let me check in a bit
Work around is what you said, creating an integration with cdk directly
a
Ok.
😩