interface TimeBasedForecastPropertiesProperty
| Language | Type name | 
|---|---|
|  .NET | Amazon.CDK.AWS.QuickSight.CfnDashboard.TimeBasedForecastPropertiesProperty | 
|  Go | github.com/aws/aws-cdk-go/awscdk/v2/awsquicksight#CfnDashboard_TimeBasedForecastPropertiesProperty | 
|  Java | software.amazon.awscdk.services.quicksight.CfnDashboard.TimeBasedForecastPropertiesProperty | 
|  Python | aws_cdk.aws_quicksight.CfnDashboard.TimeBasedForecastPropertiesProperty | 
|  TypeScript | aws-cdk-lib»aws_quicksight»CfnDashboard»TimeBasedForecastPropertiesProperty | 
The forecast properties setup 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 timeBasedForecastPropertiesProperty: quicksight.CfnDashboard.TimeBasedForecastPropertiesProperty = {
  lowerBoundary: 123,
  periodsBackward: 123,
  periodsForward: 123,
  predictionInterval: 123,
  seasonality: 123,
  upperBoundary: 123,
};
Properties
| Name | Type | Description | 
|---|---|---|
| lower | number | The lower boundary setup of a forecast computation. | 
| periods | number | The periods backward setup of a forecast computation. | 
| periods | number | The periods forward setup of a forecast computation. | 
| prediction | number | The prediction interval setup of a forecast computation. | 
| seasonality? | number | The seasonality setup of a forecast computation. Choose one of the following options:. | 
| upper | number | The upper boundary setup of a forecast computation. | 
lowerBoundary?
Type:
number
(optional)
The lower boundary setup of a forecast computation.
periodsBackward?
Type:
number
(optional)
The periods backward setup of a forecast computation.
periodsForward?
Type:
number
(optional)
The periods forward setup of a forecast computation.
predictionInterval?
Type:
number
(optional)
The prediction interval setup of a forecast computation.
seasonality?
Type:
number
(optional)
The seasonality setup of a forecast computation. Choose one of the following options:.
- NULL: The input is set to- NULL.
- NON_NULL: The input is set to a custom value.
upperBoundary?
Type:
number
(optional)
The upper boundary setup of a forecast computation.
