public create1CFFDashboard()

in lib/ab_dashboard.ts [372:388]


    public create1CFFDashboard(vreqFunctionName: string, title: string): cloudwatch.Dashboard {

        return new cloudwatch.Dashboard(this, "MonitoringDashboard", {
        dashboardName: title,
        widgets: [
            [
            new Column(this.createCFFVersionsWidget(vreqFunctionName, "Versions")),
            new Column(this.create1CFFInvocationWidgetSingleValue(vreqFunctionName)),
            new Column(this.create1CFFInvocationWidgetGraph(vreqFunctionName)),
            new Column(this.create1CFFComputeWidgetGraph(vreqFunctionName)),
            new Column(this.create1CFFValidationsWidgetGraph(vreqFunctionName)),
            new Column(this.create1CFFErrorsWidgetGraph(vreqFunctionName)),

            ]
        ]})

    }