Open
Description
Hi and thanks for the package :)
Is there a way to manage the 404 in API gateway when proxying to an s3 bucket?
like so:
- s3:
path: /{myKey}
method: get
action: GetObject
bucket:
Ref: S3Bucket
key:
pathParam: myKey
cors: true
=> this one means that if there is a file for myKey
, it will be served. But if there is no file for the requested key, how could we redirect everything to a 404 file ?