如何使用botot3将s3触发器(包括前缀,后缀,存储桶,事件类型)添加到特定的Lambda函数?
答案 0 :(得分:1)
应该执行以下操作:
s3 = boto3.resource('s3')
bucket_name = 'BUCKETNAME'
bucket_notification = s3.BucketNotification(bucket_name)
response = bucket_notification.put(
NotificationConfiguration={'LambdaFunctionConfigurations': [
{
'LambdaFunctionArn': 'ARN_OF_LAMBDA_FUNCTION',
'Events': [
's3:ObjectCreated:*'
],
},
]})
显然可以修改BUCKETNAME
和ARN_OF_LAMBDA_FUNCTION
以满足您的需求。