This repository was archived by the owner on Jan 2, 2025. It is now read-only.

Description
Hi,
I tried to hook S3 up with SQS queue by running a command
awslocal --endpoint-url=http://localhost:8000 s3api put-bucket-notification-configuration --bucket local-bucket --notification-configuration file://lead.json --profile s3local --region us-east-1
and my lead.json
{
"QueueConfigurations": [
{
"QueueArn": "arn:aws:sqs:us-east-1:000000000000:lead",
"Events": [
"s3:ObjectCreated:*"
]
}
]
}
The error message I got
An error occurred (NotImplemented) when calling the PutBucketNotificationConfiguration operation: A parameter you provided implies functionality that is not implemented
If I replace http://localhost:8000
with a S3 server generated by localstack.
it works fine but I would like to use this plugin instead of localstack.
Any ideas or did I miss something?
Thanks!