Interface CfnTemplate.ForecastConfigurationProperty
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnTemplate.ForecastConfigurationProperty.Jsii$Proxy
- Enclosing class:
CfnTemplate
@Stability(Stable)
public static interface CfnTemplate.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:
-
Nested Class Summary
Modifier and TypeInterfaceDescriptionstatic final class
A builder forCfnTemplate.ForecastConfigurationProperty
static final class
An implementation forCfnTemplate.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.- See Also:
-
getScenario
The forecast scenario of a forecast in the line chart.- See Also:
-
builder
-