interface WhatIfRangeScenarioProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.CfnPropertyMixins.AWS.QuickSight.CfnTemplatePropsMixin.WhatIfRangeScenarioProperty |
Go | github.com/aws/aws-cdk-go/awscdkcfnpropertymixins/v2/awsquicksight#CfnTemplatePropsMixin_WhatIfRangeScenarioProperty |
Java | software.amazon.awscdk.cfnpropertymixins.services.quicksight.CfnTemplatePropsMixin.WhatIfRangeScenarioProperty |
Python | aws_cdk.cfn_property_mixins.aws_quicksight.CfnTemplatePropsMixin.WhatIfRangeScenarioProperty |
TypeScript | @aws-cdk/cfn-property-mixins » aws_quicksight » CfnTemplatePropsMixin » 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 { aws_quicksight as quicksight } from '@aws-cdk/cfn-property-mixins';
const whatIfRangeScenarioProperty: quicksight.CfnTemplatePropsMixin.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