Interface CfnDashboard.ForecastConfigurationProperty
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnDashboard.ForecastConfigurationProperty.Jsii$Proxy
- Enclosing class:
- CfnDashboard
@Stability(Stable)
public static interface CfnDashboard.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();
-
Nested Class Summary
Modifier and TypeInterfaceDescriptionstatic final class
A builder forCfnDashboard.ForecastConfigurationProperty
static final class
An implementation forCfnDashboard.ForecastConfigurationProperty
-
Method Summary
Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getForecastProperties
The forecast properties setup of a forecast in the line chart. -
getScenario
The forecast scenario of a forecast in the line chart. -
builder
-