Interface CfnTemplatePropsMixin.ForecastConfigurationProperty
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnTemplatePropsMixin.ForecastConfigurationProperty.Jsii$Proxy
- Enclosing class:
CfnTemplatePropsMixin
@Stability(Stable)
public static interface CfnTemplatePropsMixin.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.cfnpropertymixins.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
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classA builder forCfnTemplatePropsMixin.ForecastConfigurationPropertystatic final classAn implementation forCfnTemplatePropsMixin.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.Returns union: either
IResolvableorCfnTemplatePropsMixin.TimeBasedForecastPropertiesProperty- See Also:
-
getScenario
The forecast scenario of a forecast in the line chart.Returns union: either
IResolvableorCfnTemplatePropsMixin.ForecastScenarioProperty- See Also:
-
builder
-