-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmain.go
33 lines (26 loc) · 777 Bytes
/
main.go
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
package main
import (
sqs "aws-sqs-lambda/types"
"context"
"encoding/json"
"fmt"
"github.com/aws/aws-lambda-go/events"
"github.com/aws/aws-lambda-go/lambda"
)
func handler(_ context.Context, sqsEvent events.SQSEvent) {
for _, message := range sqsEvent.Records {
var messageBody sqs.Body
if err := json.Unmarshal([]byte(message.Body), &messageBody); err != nil {
fmt.Printf("❌ Unable to parse SQS body: %s\n", err)
continue
}
for _, record := range messageBody.Records {
s3Entity := record.S3
fmt.Printf("[%s - %s] Bucket = %s, Key = %s \n", record.EventSource, record.EventTime, s3Entity.Bucket.Name, s3Entity.Object.Key)
}
}
}
func main() {
// Make the handler available for Remote Procedure Call by AWS Lambda
lambda.Start(handler)
}