1 Answer
- Newest
- Most votes
- Most comments
0
Hello.
"Subscribers" is "Array of Subscribers", so you need to do the following:
In other words, I think it is necessary to pass the email addresses one by one as parameters instead of separating them with commas.
Alternatively, there may be a workaround such as creating a mailing list and consolidating it into one email address.
Parameters:
Email1:
Type: String
Email2:
Type: String
Resources:
Budget:
Type: AWS::Budgets::Budget
Properties:
Budget:
BudgetName: "my-test-budget"
NotificationsWithSubscribers:
- Notification:
NotificationType: !Ref NotificationType
ComparisonOperator: GREATER_THAN
Threshold: !Ref WarningThreshold
Subscribers:
- Address: !Ref Email1
SubscriptionType: EMAIL
- Address: !Ref Email2
SubscriptionType: EMAIL
Relevant content
- AWS OFFICIALUpdated 2 years ago
- AWS OFFICIALUpdated 3 years ago
- AWS OFFICIALUpdated 8 days ago
- AWS OFFICIALUpdated 2 years ago