interface ForecastScenarioProperty
| Language | Type name | 
|---|---|
|  .NET | Amazon.CDK.AWS.QuickSight.CfnTemplate.ForecastScenarioProperty | 
|  Java | software.amazon.awscdk.services.quicksight.CfnTemplate.ForecastScenarioProperty | 
|  Python | aws_cdk.aws_quicksight.CfnTemplate.ForecastScenarioProperty | 
|  TypeScript | @aws-cdk/aws-quicksight»CfnTemplate»ForecastScenarioProperty | 
The forecast scenario of a forecast in the line chart.
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 forecastScenarioProperty: quicksight.CfnTemplate.ForecastScenarioProperty = {
  whatIfPointScenario: {
    date: 'date',
    value: 123,
  },
  whatIfRangeScenario: {
    endDate: 'endDate',
    startDate: 'startDate',
    value: 123,
  },
};
Properties
| Name | Type | Description | 
|---|---|---|
| what | IResolvable | What | The what-if analysis forecast setup with the target date. | 
| what | IResolvable | What | The what-if analysis forecast setup with the date range. | 
whatIfPointScenario?
Type:
IResolvable | What
(optional)
The what-if analysis forecast setup with the target date.
whatIfRangeScenario?
Type:
IResolvable | What
(optional)
The what-if analysis forecast setup with the date range.
