Interface CfnAnalysis.ForecastScenarioProperty
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnAnalysis.ForecastScenarioProperty.Jsii$Proxy
- Enclosing class:
CfnAnalysis
@Stability(Stable)
public static interface CfnAnalysis.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();
- See Also:
-
Nested Class Summary
Modifier and TypeInterfaceDescriptionstatic final class
A builder forCfnAnalysis.ForecastScenarioProperty
static final class
An implementation forCfnAnalysis.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.- See Also:
-
getWhatIfRangeScenario
The what-if analysis forecast setup with the date range.- See Also:
-
builder
-