0.6.0 • Published 2 years ago
@moralesl/billing-alert v0.6.0
CDK Billing Alert utility
Utility CDK construct to setup billing alerts easily
Usage
Typescript
First you need to install the package
npm install @moralesl/billing-alert
Then you can use the billing alert utility in your code:
import { BillingAlert } from "@moralesl/billing-alert";
new BillingAlert(this, "BillingAlertTenDollars", {
amount: 10,
emails: [
"test@example.com",
]
});
Python
First you need to install the package
pip install moralesl.billing-alert
Then you can use the billing alert utility in your code:
import moralesl.billing_alert as billing_alert
billing_alert.BillingAlert(self, "BillingAlertTenDollars",
amount=10,
emails=["test@example.com"]
)