@gammarers/aws-budgets-notification
Version:
AWS Budgets Notification
11 lines (10 loc) • 385 B
TypeScript
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);
}