Я хотел бы использовать приведенный ниже шаблон облачной информации для создания нескольких уведомлений о событиях в одной существующей корзине S3. Однако даже если я укажу другую «LambdaFunctionConfigurations» в ресурсе BucketConfiguration, я увижу только одно событие, созданное в корзине S3. Я также попытался создать другой ресурс BucketConfiguration с отдельным событием, настроенным без какой-либо удачи. Я ищу какие-либо советы или советы, которые помогли бы направить меня в правильном направлении. Из того, что я понял, метод s3.putBucketNotification очистит любую существующую конфигурацию уведомлений о событиях. Помните, что шаблон CF создает одно уведомление о событии (я хочу создать несколько уведомлений о событиях).
Модель для шаблона ниже:
Создание лямбда-уведомления в корзине S3 с CloudFormation
Description: >-
Create an event notification for an existing S3 bucket
Parameters:
BucketName:
Description: S3 Bucket name (must already exist)
Type: String
Resources:
BucketConfiguration:
Type: 'Custom::S3BucketConfiguration'
DependsOn:
- BucketPermission
- NotificationBucketPolicy
Properties:
ServiceToken: !GetAtt S3BucketConfiguration.Arn
Bucket: !Ref BucketName
NotificationConfiguration:
LambdaFunctionConfigurations:
- Events:
- 's3:ObjectCreated:*'
LambdaFunctionArn: MyLambdaArn
Metadata:
'AWS::CloudFormation::Designer':
id: 606b322f-42fa-4d20-bae4-53374d7ad7ba
S3BucketConfiguration:
Type: 'AWS::Lambda::Function'
Properties:
Description: S3 Object Custom Resource
Handler: index.handler
Role: !GetAtt LambdaExecutionRole.Arn
Code:
ZipFile: !Sub |
var response = require('cfn-response');
var AWS = require('aws-sdk');
var s3 = new AWS.S3();
exports.handler = function(event, context) {
var respond = (e) => response.send(event, context, e ? response.FAILED : response.SUCCESS, e ? e : {});
process.on('uncaughtException', e=>failed(e));
var params = event.ResourceProperties;
delete params.ServiceToken;
if (event.RequestType === 'Delete') {
params.NotificationConfiguration = {};
s3.putBucketNotificationConfiguration(params).promise()
.then((data)=>respond())
.catch((e)=>respond());
} else {
s3.putBucketNotificationConfiguration(params).promise()
.then((data)=>respond())
.catch((e)=>respond(e));
}
};
Timeout: 30
Runtime: nodejs6.10
Metadata:
'AWS::CloudFormation::Designer':
id: 1cefd553-f888-4b3b-8184-d96932a29227
BucketPermission:
Type: 'AWS::Lambda::Permission'
Properties:
Action: 'lambda:InvokeFunction'
Principal: s3.amazonaws.com
SourceAccount: !Ref 'AWS::AccountId'
SourceArn: !Sub 'arn:aws:s3:::${BucketName}'
Metadata:
'AWS::CloudFormation::Designer':
id: 29f90f84-cfd0-43d2-8c2b-c173ec96c409
LambdaExecutionRole:
Type: 'AWS::IAM::Role'
Properties:
AssumeRolePolicyDocument:
Version: 2012-10-17
Statement:
- Effect: Allow
Principal:
Service:
- lambda.amazonaws.com
Action:
- 'sts:AssumeRole'
Path: /
ManagedPolicyArns:
- 'arn:aws:iam::aws:policy/service-role/AWSLambdaBasicExecutionRole'
Policies:
- PolicyName: S3Policy
PolicyDocument:
Version: 2012-10-17
Statement:
- Effect: Allow
Action:
- 's3:PutObject'
- 'S3:DeleteObject'
Resource: !Sub 'arn:aws:s3:::${BucketName}'
Metadata:
'AWS::CloudFormation::Designer':
id: 3556f770-b7cd-4ac1-8afa-62a0319721b8
NotificationBucketPolicy:
Type: 'AWS::S3::BucketPolicy'
Properties:
Bucket: !Ref BucketName
PolicyDocument:
Statement:
- Effect: Allow
Action:
- 's3:PutBucketNotification'
Resource: !Sub 'arn:aws:s3:::${BucketName}'
Principal:
AWS: !GetAtt LambdaExecutionRole.Arn
Metadata:
'AWS::CloudFormation::Designer':
id: 1f82086e-0d71-4731-8173-e3b8ee0da4dd
Metadata:
'AWS::CloudFormation::Designer':
3556f770-b7cd-4ac1-8afa-62a0319721b8:
size:
width: 60
height: 60
position:
x: 60
'y': 90
z: 1
embeds: []
1f82086e-0d71-4731-8173-e3b8ee0da4dd:
size:
width: 60
height: 60
position:
x: 180
'y': 90
z: 1
embeds: []
29f90f84-cfd0-43d2-8c2b-c173ec96c409:
size:
width: 60
height: 60
position:
x: 410
'y': 90
z: 1
embeds: []
1cefd553-f888-4b3b-8184-d96932a29227:
size:
width: 60
height: 60
position:
x: 300
'y': 190
z: 1
embeds: []
606b322f-42fa-4d20-bae4-53374d7ad7ba:
size:
width: 60
height: 60
position:
x: 300
'y': 90
z: 1
embeds: []
dependson:
- 29f90f84-cfd0-43d2-8c2b-c173ec96c409
- 1f82086e-0d71-4731-8173-e3b8ee0da4dd