public create2CFFDashboard()

in lib/ab_dashboard.ts [390:406]


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

        return new cloudwatch.Dashboard(this, "MonitoringDashboard", {
        dashboardName: title,
        widgets: [
            [
            new Column(this.createCFFVersionsWidget(vreqFunctionName, "Versions")),
            new Column(this.createCFFUsersWidget(vreqFunctionName, "Users")),
            new Column(this.create2CFFInvocationWidgetSingleValue(vreqFunctionName, vrespFunctionName)),
            new Column(this.create2CFFInvocationWidgetGraph(vreqFunctionName, vrespFunctionName)),
            new Column(this.create2CFFComputeWidgetGraph(vreqFunctionName, vrespFunctionName)),
            new Column(this.create2CFFValidationsWidgetGraph(vreqFunctionName, vrespFunctionName)),
            new Column(this.create2CFFErrorsWidgetGraph(vreqFunctionName, vrespFunctionName)),
            ]
        ]})

    }