Interface CfnAnalysis.ForecastConfigurationProperty

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

@Stability(Stable) public static interface CfnAnalysis.ForecastConfigurationProperty extends software.amazon.jsii.JsiiSerializable
The forecast configuration that is used in a line chart's display properties.

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.*;
 ForecastConfigurationProperty forecastConfigurationProperty = ForecastConfigurationProperty.builder()
         .forecastProperties(TimeBasedForecastPropertiesProperty.builder()
                 .lowerBoundary(123)
                 .periodsBackward(123)
                 .periodsForward(123)
                 .predictionInterval(123)
                 .seasonality(123)
                 .upperBoundary(123)
                 .build())
         .scenario(ForecastScenarioProperty.builder()
                 .whatIfPointScenario(WhatIfPointScenarioProperty.builder()
                         .date("date")
                         .value(123)
                         .build())
                 .whatIfRangeScenario(WhatIfRangeScenarioProperty.builder()
                         .endDate("endDate")
                         .startDate("startDate")
                         .value(123)
                         .build())
                 .build())
         .build();
 

See Also: