UNPKG

cdk-monitoring-constructs

Version:

[![Gitpod Ready-to-Code](https://img.shields.io/badge/Gitpod-ready--to--code-blue?logo=gitpod)](https://gitpod.io/#https://github.com/cdklabs/cdk-monitoring-constructs) [![NPM version](https://badge.fury.io/js/cdk-monitoring-constructs.svg)](https://badge

13 lines (12 loc) 579 B
import { Dashboard, DashboardProps, IWidget } from "aws-cdk-lib/aws-cloudwatch"; import { Construct } from "constructs"; import { BitmapDashboard } from "./BitmapDashboard"; /** * Composite dashboard which keeps a normal dashboard with its bitmap copy. * The bitmap copy name will be derived from the primary dashboard name, if specified. */ export declare class DashboardWithBitmapCopy extends Dashboard { protected readonly bitmapCopy: BitmapDashboard; constructor(scope: Construct, id: string, props: DashboardProps); addWidgets(...widgets: IWidget[]): void; }