Create Event Notification Rule
r2.buckets.event_notifications.update(strqueue_id, EventNotificationUpdateParams**kwargs) -> object
PUT/accounts/{account_id}/event_notifications/r2/{bucket_name}/configuration/queues/{queue_id}
Create event notification rule.
Security
API Token
The preferred authorization scheme for interacting with the Cloudflare API. Create a token.
Example:
Accepted Permissions (at least one required)
Parameters
Create Event Notification Rule
import os
from cloudflare import Cloudflare
client = Cloudflare(
api_token=os.environ.get("CLOUDFLARE_API_TOKEN"), # This is the default and can be omitted
)
event_notification = client.r2.buckets.event_notifications.update(
queue_id="queue_id",
account_id="023e105f4ecef8ad9ca31a8372d0c353",
bucket_name="example-bucket",
rules=[{
"actions": ["PutObject", "CopyObject"]
}],
)
print(event_notification){
"errors": [
{
"code": 1000,
"message": "message",
"documentation_url": "documentation_url",
"source": {
"pointer": "pointer"
}
}
],
"messages": [
"string"
],
"result": {},
"success": true
}Returns Examples
{
"errors": [
{
"code": 1000,
"message": "message",
"documentation_url": "documentation_url",
"source": {
"pointer": "pointer"
}
}
],
"messages": [
"string"
],
"result": {},
"success": true
}