Skip to content

Commit 50dbfb1

Browse files
authoredJan 4, 2024
[479] CloudWatchEvent renamed to EventBridgeEvent (#537)
* #479 CloudWatchEvent renamed to EventBridgeEvent * #479 CloudWatchEvent renamed to EventBridgeEvent * #479 code improvements after code review * #479 small fixes after code review * #479 small fix after code review
1 parent f079271 commit 50dbfb1

5 files changed

+9
-9
lines changed
 

‎events/README_CloudWatch_Events.md ‎events/README_EventBridge_Events.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11

22
# Sample Function
33

4-
The following is a Lambda function that receives Amazon CloudWatch event record data as input and writes event detail to Lambda's CloudWatch Logs. Note that by default anything written to Console will be logged as CloudWatch Logs events.
4+
The following is a Lambda function that receives Amazon EventBridge event record data as input and writes event detail to Lambda's CloudWatch Logs. Note that by default anything written to Console will be logged as CloudWatch Logs events.
55

66
```go
77
import (
@@ -11,7 +11,7 @@ import (
1111
"github.com/aws/aws-lambda-go/events"
1212
)
1313

14-
func handler(ctx context.Context, event events.CloudWatchEvent) {
14+
func handler(ctx context.Context, event events.EventBridgeEvent) {
1515
fmt.Printf("Detail = %s\n", event.Detail)
1616
}
1717
```

‎events/cloudwatch_events.go

+3-2
Original file line numberDiff line numberDiff line change
@@ -5,8 +5,7 @@ import (
55
"time"
66
)
77

8-
// CloudWatchEvent is the outer structure of an event sent via CloudWatch Events.
9-
// For examples of events that come via CloudWatch Events, see https://docs.aws.amazon.com/AmazonCloudWatch/latest/events/EventTypes.html
8+
// CloudWatchEvent is the outer structure of an event sent via EventBridge serverless service.
109
type CloudWatchEvent struct {
1110
Version string `json:"version"`
1211
ID string `json:"id"`
@@ -18,3 +17,5 @@ type CloudWatchEvent struct {
1817
Resources []string `json:"resources"`
1918
Detail json.RawMessage `json:"detail"`
2019
}
20+
21+
type EventBridgeEvent = CloudWatchEvent

‎events/codedeploy.go

-2
Original file line numberDiff line numberDiff line change
@@ -20,8 +20,6 @@ const (
2020
CodeDeployDeploymentStateSuccess CodeDeployDeploymentState = "SUCCESS"
2121
)
2222

23-
// CodeDeployEvent is documented at:
24-
// https://docs.aws.amazon.com/AmazonCloudWatch/latest/events/EventTypes.html#acd_event_types
2523
type CodeDeployEvent struct {
2624
// AccountID is the id of the AWS account from which the event originated.
2725
AccountID string `json:"account"`

‎events/codepipeline_cloudwatch.go

+2-2
Original file line numberDiff line numberDiff line change
@@ -41,8 +41,6 @@ const (
4141
CodePipelineActionStateCanceled CodePipelineActionState = "CANCELED"
4242
)
4343

44-
// CodePipelineEvent is documented at:
45-
// https://docs.aws.amazon.com/AmazonCloudWatch/latest/events/EventTypes.html#codepipeline_event_type
4644
type CodePipelineCloudWatchEvent struct {
4745
// Version is the version of the event's schema.
4846
Version string `json:"version"`
@@ -76,6 +74,8 @@ type CodePipelineCloudWatchEvent struct {
7674
Detail CodePipelineEventDetail `json:"detail"`
7775
}
7876

77+
type CodePipelineEventBridgeEvent = CodePipelineCloudWatchEvent
78+
7979
type CodePipelineEventDetail struct {
8080
Pipeline string `json:"pipeline"`
8181

‎events/codepipeline_cloudwatch_test.go

+2-1
Original file line numberDiff line numberDiff line change
@@ -2,10 +2,11 @@ package events
22

33
import (
44
"encoding/json"
5-
"github.com/stretchr/testify/require"
65
"io/ioutil" //nolint: staticcheck
76
"testing"
87
"time"
8+
9+
"github.com/stretchr/testify/require"
910
)
1011

1112
func TestUnmarshalCodePipelineEvent(t *testing.T) {

0 commit comments

Comments
 (0)
Please sign in to comment.