Interface CfnDashboard.ForecastScenarioProperty
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnDashboard.ForecastScenarioProperty.Jsii$Proxy
- Enclosing class:
- CfnDashboard
@Stability(Stable)
public static interface CfnDashboard.ForecastScenarioProperty
extends software.amazon.jsii.JsiiSerializable
The forecast scenario of a forecast in the line chart.
Example:
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import software.amazon.awscdk.services.quicksight.*;
ForecastScenarioProperty forecastScenarioProperty = ForecastScenarioProperty.builder()
.whatIfPointScenario(WhatIfPointScenarioProperty.builder()
.date("date")
.value(123)
.build())
.whatIfRangeScenario(WhatIfRangeScenarioProperty.builder()
.endDate("endDate")
.startDate("startDate")
.value(123)
.build())
.build();
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classA builder forCfnDashboard.ForecastScenarioPropertystatic final classAn implementation forCfnDashboard.ForecastScenarioProperty -
Method Summary
Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getWhatIfPointScenario
The what-if analysis forecast setup with the target date. -
getWhatIfRangeScenario
The what-if analysis forecast setup with the date range. -
builder
-