hi, with typescript, i know it is possible to refe...
# general
w
hi, with typescript, i know it is possible to reference resource outputs in lambda functions, so i can do
const file = new aws.s3.BucketObject("filename", {...});
and later in a lambda access it using
file.id.get()
. is it possible to create an array of resources and access them from a lambda too? when i try the naive way of pushing resources into an array it seems to turn up empty thank you