aws-cdk-lib.aws_quicksight.CfnDashboard.ForecastConfigurationProperty

interface ForecastConfigurationProperty

LanguageType name
.NETAmazon.CDK.AWS.QuickSight.CfnDashboard.ForecastConfigurationProperty
Gogithub.com/aws/aws-cdk-go/awscdk/v2/awsquicksight#CfnDashboard_ForecastConfigurationProperty
Javasoftware.amazon.awscdk.services.quicksight.CfnDashboard.ForecastConfigurationProperty
Pythonaws_cdk.aws_quicksight.CfnDashboard.ForecastConfigurationProperty
TypeScript aws-cdk-lib » aws_quicksight » CfnDashboard » 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 { aws_quicksight as quicksight } from 'aws-cdk-lib';
const forecastConfigurationProperty: quicksight.CfnDashboard.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

NameTypeDescription
forecastProperties?IResolvable | TimeBasedForecastPropertiesPropertyThe forecast properties setup of a forecast in the line chart.
scenario?IResolvable | ForecastScenarioPropertyThe forecast scenario of a forecast in the line chart.

forecastProperties?

Type: IResolvable | TimeBasedForecastPropertiesProperty (optional)

The forecast properties setup of a forecast in the line chart.


scenario?

Type: IResolvable | ForecastScenarioProperty (optional)

The forecast scenario of a forecast in the line chart.