We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Created s3:ObjectCreated:* event schedule for {name}!
s3:ObjectCreated:* event schedule for {name} already exists - Nothing to do here.
to make multiple event in s3
setting file is like below
{ "service1": { "events": [ { "function": "name", "event_source": { "arn": "arn:aws:s3:::bucket", "key_filters": [ { "type": "prefix", "value": "service1/" } ], "events": [ "s3:ObjectCreated:" ] } } ] }, "service2": { "events": [ { "function": "name", "event_source": { "arn": "arn:aws:s3:::bucket", "key_filters": [ { "type": "prefix", "value": "service2/" } ], "events": [ "s3:ObjectCreated:" ] } } ] } }
The text was updated successfully, but these errors were encountered:
It's a duplicate of #1319 , I think you can close this one
Sorry, something went wrong.
No branches or pull requests
Expected Behavior
Created s3:ObjectCreated:* event schedule for {name}!
Actual Behavior
s3:ObjectCreated:* event schedule for {name} already exists - Nothing to do here.
Possible Fix
to make multiple event in s3
Your Environment
setting file is like below
{
"service1": {
"events": [
{
"function": "name",
"event_source": {
"arn": "arn:aws:s3:::bucket",
"key_filters": [
{
"type": "prefix",
"value": "service1/"
}
],
"events": [
"s3:ObjectCreated:"
]
}
}
]
},
"service2": {
"events": [
{
"function": "name",
"event_source": {
"arn": "arn:aws:s3:::bucket",
"key_filters": [
{
"type": "prefix",
"value": "service2/"
}
],
"events": [
"s3:ObjectCreated:"
]
}
}
]
}
}
The text was updated successfully, but these errors were encountered: