@cfxlabsinc/b2b-services
    Preparing search index...

    Interface ServiceDashboardWidget

    One widget in the dashboard grid, before layout. metrics uses the dashboard-body array form verbatim — [Namespace, MetricName, ...dimension pairs, { options }] — because that is the form the CloudWatch console's "view source" produces, so a widget prototyped there pastes straight in. https://docs.aws.amazon.com/AmazonCloudWatch/latest/monitoring/CloudWatch-Dashboard-Body-Structure.html

    interface ServiceDashboardWidget {
        metrics: Input<string | Record<string, unknown>>[][];
        properties?: Record<string, unknown>;
        title: string;
    }
    Index
    metrics: Input<string | Record<string, unknown>>[][]
    properties?: Record<string, unknown>

    Widget-level properties merged over the defaults (stat, period, yAxis…).

    title: string