i created added storage to my amplify app and chose the option that generates a lambda trigger.
it's all working fine, the lambda is called when i add a file to the s3 bucket.
but i was hoping to set a filter on the trigger so my lambda only gets called when files appear in the "/inbox" folder, for example.
do i have to manually edit the amplify/backend/storage/myname/build/cloudformation-template.json?
is there a way to do it in the console and pull it down?
it seems there needs to be a Filter.S3Key.Rules { Name: "prefix", Value: "inbox/" } somewhere in there...