UNPKG

@gammarers/aws-budgets-notification

Version:
11 lines (10 loc) 385 B
import { Construct } from 'constructs'; export interface BudgetsNotificationProps { readonly slackWorkspaceId: string; readonly slackChannelId: string; readonly budgetLimitAmount: number; readonly linkedAccounts?: string[]; } export declare class BudgetsNotification extends Construct { constructor(scope: Construct, id: string, props: BudgetsNotificationProps); }