interface WhatIfRangeScenarioProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.QuickSight.Mixins.CfnAnalysisPropsMixin.WhatIfRangeScenarioProperty |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awsquicksight/mixins#CfnAnalysisPropsMixin_WhatIfRangeScenarioProperty |
Java | software.amazon.awscdk.mixins.preview.services.quicksight.mixins.CfnAnalysisPropsMixin.WhatIfRangeScenarioProperty |
Python | aws_cdk.mixins_preview.aws_quicksight.mixins.CfnAnalysisPropsMixin.WhatIfRangeScenarioProperty |
TypeScript | @aws-cdk/mixins-preview » aws_quicksight » mixins » CfnAnalysisPropsMixin » WhatIfRangeScenarioProperty |
Provides the forecast to meet the target for a particular date range.
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 whatIfRangeScenarioProperty: quicksight_mixins.CfnAnalysisPropsMixin.WhatIfRangeScenarioProperty = {
endDate: 'endDate',
startDate: 'startDate',
value: 123,
};
Properties
| Name | Type | Description |
|---|---|---|
| end | string | The end date in the date range that you need the forecast results for. |
| start | string | The start date in the date range that you need the forecast results for. |
| value? | number | The target value that you want to meet for the provided date range. |
endDate?
Type:
string
(optional)
The end date in the date range that you need the forecast results for.
startDate?
Type:
string
(optional)
The start date in the date range that you need the forecast results for.
value?
Type:
number
(optional, default: 0)
The target value that you want to meet for the provided date range.

.NET
Go
Java
Python
TypeScript