Skip to content

Commit bbf8269

Browse files
committed
Add AppFlow namespace support in services.go and update README
1 parent 7e6a855 commit bbf8269

File tree

2 files changed

+11
-0
lines changed

2 files changed

+11
-0
lines changed

README.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -58,6 +58,7 @@ Only the latest version gets security updates. We won't support older versions.
5858
* `AWS/ApplicationELB` - Application Load Balancer
5959
* `AWS/AppRunner` - Managed Container Apps Service
6060
* `AWS/AppStream` - AppStream
61+
* `AWS/AppFlow` - AppFlow
6162
* `AWS/AppSync` - AppSync
6263
* `AWS/Athena` - Athena
6364
* `AWS/AutoScaling` - Auto Scaling Group

pkg/config/services.go

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -131,6 +131,16 @@ var SupportedServices = serviceConfigs{
131131
regexp.MustCompile(":loadbalancer/(?P<LoadBalancer>.+)$"),
132132
},
133133
},
134+
{
135+
Namespace: "AWS/AppFlow",
136+
Alias: "appflow",
137+
ResourceFilters: []*string{
138+
aws.String("appflow:flow"),
139+
},
140+
DimensionRegexps: []*regexp.Regexp{
141+
regexp.MustCompile(":flow/(?P<FlowName>[^/]+)"),
142+
},
143+
},
134144
{
135145
Namespace: "AWS/AppStream",
136146
Alias: "appstream",

0 commit comments

Comments
 (0)