interface ForecastScenarioProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.QuickSight.Mixins.CfnDashboardPropsMixin.ForecastScenarioProperty |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awsquicksight/mixins#CfnDashboardPropsMixin_ForecastScenarioProperty |
Java | software.amazon.awscdk.mixins.preview.services.quicksight.mixins.CfnDashboardPropsMixin.ForecastScenarioProperty |
Python | aws_cdk.mixins_preview.aws_quicksight.mixins.CfnDashboardPropsMixin.ForecastScenarioProperty |
TypeScript | @aws-cdk/mixins-preview » aws_quicksight » mixins » CfnDashboardPropsMixin » 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 { mixins as quicksight_mixins } from '@aws-cdk/mixins-preview/aws-quicksight';
const forecastScenarioProperty: quicksight_mixins.CfnDashboardPropsMixin.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.

.NET
Go
Java
Python
TypeScript