-
Notifications
You must be signed in to change notification settings - Fork 1k
Expand file tree
/
Copy pathexample-pattern.json
More file actions
58 lines (58 loc) · 1.85 KB
/
example-pattern.json
File metadata and controls
58 lines (58 loc) · 1.85 KB
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
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
{
"title": "EventBridge Scheduler fan-out pattern",
"description": "Create an Amazon EventBridge Scheduler that fans out to multiple targets via a custom Event Bus",
"language": "Python",
"level": "200",
"framework": "Terraform",
"introBox": {
"headline": "How it works",
"text": [
"This sample project demonstrates how to use Amazon EventBridge Scheduler to trigger multiple downstream targets from a single schedule. Since Scheduler supports only one target per schedule, this pattern uses a custom EventBridge Event Bus as the fan-out hub."
]
},
"gitHub": {
"template": {
"repoURL": "https://github.com/aws-samples/serverless-patterns/tree/main/eventbridge-fanout-pattern",
"templateURL": "serverless-patterns/eventbridge-fanout-pattern",
"projectFolder": "eventbridge-fanout-pattern",
"templateFile": "main.tf"
}
},
"resources": {
"bullets": [
{
"text": "Creating Amazon EventBridge event patterns",
"link": "https://docs.aws.amazon.com/eventbridge/latest/userguide/eb-event-patterns.html"
},
{
"text": "Event buses in Amazon EventBridge",
"link": "https://docs.aws.amazon.com/eventbridge/latest/userguide/eb-event-bus.html"
}
]
},
"deploy": {
"text": [
"terraform init",
"terraform apply"
]
},
"testing": {
"text": [
"See the GitHub repo for detailed testing instructions."
]
},
"cleanup": {
"text": [
"terraform destroy",
"terraform show"
]
},
"authors": [
{
"name": "Archana V",
"image": "https://media.licdn.com/dms/image/v2/D5603AQGhkVtEhllFEw/profile-displayphoto-shrink_400_400/B56ZZH3LL6H0Ag-/0/1744962369913?e=1774483200&v=beta&t=wAhvwq-jEIWnyQwDfIkK_-Sq16Z4RvpjWtYmDkc3eg4",
"bio": "Solutions Architect at AWS",
"linkedin": "archanavenkat"
}
]
}