You must be logged in to view saved presets
AWS Budgets provide the ability to set custom budgets that can alert when costs exceed (or are forecasted to exceed) the budgeted amount. A notification has been configured when the actual costs exceed 80% of the budget (Default is 1000 USD).
AWSTemplateFormatVersion: '2010-09-09'
Description: ''
Resources:
Budget:
Type: 'AWS::Budgets::Budget'
Properties:
Budget:
BudgetName: Cost Budget
BudgetType: COST
BudgetLimit:
Amount: '1000'
Unit: USD
TimeUnit: MONTHLY
NotificationsWithSubscribers:
- Notification:
NotificationType: ACTUAL
ComparisonOperator: GREATER_THAN
Threshold: '80'
ThresholdType: PERCENTAGE
Subscribers:
- SubscriptionType: EMAIL
Address: ''
Parameters: {}
Metadata: {}
Conditions: {}