UNPKG

aws-cdk-lib

Version:

Version 2 of the AWS Cloud Development Kit library

26 lines (25 loc) 613 B
import { IEnvironmentAware } from "../environment-aware"; import * as constructs from "constructs"; /** * Indicates that this resource can be referenced as a Dashboard. * * @stability experimental */ export interface IDashboardRef extends constructs.IConstruct, IEnvironmentAware { /** * A reference to a Dashboard resource. */ readonly dashboardRef: DashboardReference; } /** * A reference to a Dashboard resource. * * @struct * @stability external */ export interface DashboardReference { /** * The Arn of the Dashboard resource. */ readonly dashboardArn: string; }