interface ForecastConfigurationProperty
| Language | Type name | 
|---|---|
|  .NET | Amazon.CDK.AWS.QuickSight.CfnTemplate.ForecastConfigurationProperty | 
|  Java | software.amazon.awscdk.services.quicksight.CfnTemplate.ForecastConfigurationProperty | 
|  Python | aws_cdk.aws_quicksight.CfnTemplate.ForecastConfigurationProperty | 
|  TypeScript | @aws-cdk/aws-quicksight»CfnTemplate»ForecastConfigurationProperty | 
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 * as quicksight from '@aws-cdk/aws-quicksight';
const forecastConfigurationProperty: quicksight.CfnTemplate.ForecastConfigurationProperty = {
  forecastProperties: {
    lowerBoundary: 123,
    periodsBackward: 123,
    periodsForward: 123,
    predictionInterval: 123,
    seasonality: 123,
    upperBoundary: 123,
  },
  scenario: {
    whatIfPointScenario: {
      date: 'date',
      value: 123,
    },
    whatIfRangeScenario: {
      endDate: 'endDate',
      startDate: 'startDate',
      value: 123,
    },
  },
};
Properties
| Name | Type | Description | 
|---|---|---|
| forecast | IResolvable | Time | The forecast properties setup of a forecast in the line chart. | 
| scenario? | IResolvable | Forecast | The forecast scenario of a forecast in the line chart. | 
forecastProperties?
Type:
IResolvable | Time
(optional)
The forecast properties setup of a forecast in the line chart.
scenario?
Type:
IResolvable | Forecast
(optional)
The forecast scenario of a forecast in the line chart.
