Interface CfnTemplate.ForecastScenarioProperty

All Superinterfaces:
software.amazon.jsii.JsiiSerializable
All Known Implementing Classes:
CfnTemplate.ForecastScenarioProperty.Jsii$Proxy
Enclosing class:
CfnTemplate

@Stability(Stable) public static interface CfnTemplate.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: