Outputs: S3BucketName: Description:'Name of the created S3 bucket' Value:!GetAttS3EventBridgeStack.Outputs.S3BucketName EventBusName: Description:'Name of the created EventBridge bus' Value:!GetAttS3EventBridgeStack.Outputs.EventBusName LambdaFunctionArn: Description:'ARN of the created Lambda function' Value:!GetAttLambdaStack.Outputs.LambdaFunctionArn
S3EventBridgeStack
このリソースで S3 と EventBridge の Custom event bus を作成します。
LambdaStack
このリソースで Lambda 関数を作成します。 Custom event bus の名前をパラメータとして渡すのは、トリガーを設定する必要があるためです。 S3 バケット名をパラメータとして渡すのは、Lambda 関数にバケットへのアクセス権を設定するためです。
s3-eventbridge-template.yaml
S3 bucket と Custom event bus および、 Default event bus からの転送するルールを設定するテンプレートです。
# Add new rule to default event bus that forward PutObject events from default bus to custom bus ForwardS3PutObjectRule: Type:'AWS::Events::Rule' Properties: EventBusName:'default'# This specifies the default event bus EventPattern: source: -aws.s3 detail-type: -'Object Created' detail: bucket: name: -!RefMyS3Bucket State:'ENABLED' Targets: -Arn:!GetAttMyEventBus.Arn Id:"ForwardToMyS3EventBus" RoleArn:!GetAttForwardEventRole.Arn
# IAM role to allow EventBridge to put events on the custom bus ForwardEventRole: Type:'AWS::IAM::Role' Properties: AssumeRolePolicyDocument: Version:'2012-10-17' Statement: -Effect:Allow Principal: Service:events.amazonaws.com Action:'sts:AssumeRole' Policies: -PolicyName:'nested-sam-app-1-allow-put-event-to-bus' PolicyDocument: Version:'2012-10-17' Statement: -Effect:Allow Action:'events:PutEvents' Resource:!GetAttMyEventBus.Arn
Outputs: S3BucketName: Description:'Name of the created S3 bucket' Value:!RefMyS3Bucket EventBusName: Description:'Name of the created EventBridge bus' Value:!RefMyEventBus EventBusArn: Description:'ARN of the created EventBridge bus' Value:!GetAttMyEventBus.Arn
AWSTemplateFormatVersion:'2010-09-09' Transform:AWS::Serverless-2016-10-31 Description:'Template to create Lambda function triggered by S3 events via EventBridge'
Parameters: EventBusName: Type:String Description:'Name of the EventBridge bus' S3BucketName: Type:String Description:'Name of the S3 bucket'