aws-cdk-lib.aws_quicksight.CfnDashboard.ForecastScenarioProperty

interface ForecastScenarioProperty

LanguageType name
.NETAmazon.CDK.AWS.QuickSight.CfnDashboard.ForecastScenarioProperty
Gogithub.com/aws/aws-cdk-go/awscdk/v2/awsquicksight#CfnDashboard_ForecastScenarioProperty
Javasoftware.amazon.awscdk.services.quicksight.CfnDashboard.ForecastScenarioProperty
Pythonaws_cdk.aws_quicksight.CfnDashboard.ForecastScenarioProperty
TypeScript aws-cdk-lib » aws_quicksight » CfnDashboard » 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 { aws_quicksight as quicksight } from 'aws-cdk-lib';
const forecastScenarioProperty: quicksight.CfnDashboard.ForecastScenarioProperty = {
  whatIfPointScenario: {
    date: 'date',
    value: 123,
  },
  whatIfRangeScenario: {
    endDate: 'endDate',
    startDate: 'startDate',
    value: 123,
  },
};

Properties

NameTypeDescription
whatIfPointScenario?IResolvable | WhatIfPointScenarioPropertyThe what-if analysis forecast setup with the target date.
whatIfRangeScenario?IResolvable | WhatIfRangeScenarioPropertyThe what-if analysis forecast setup with the date range.

whatIfPointScenario?

Type: IResolvable | WhatIfPointScenarioProperty (optional)

The what-if analysis forecast setup with the target date.


whatIfRangeScenario?

Type: IResolvable | WhatIfRangeScenarioProperty (optional)

The what-if analysis forecast setup with the date range.