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

.NET
Go
Java
Python
TypeScript