Interface CfnAnalysis.ForecastScenarioProperty
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnAnalysis.ForecastScenarioProperty.Jsii$Proxy
- Enclosing class:
CfnAnalysis
@Stability(Stable)
public static interface CfnAnalysis.ForecastScenarioProperty
extends software.amazon.jsii.JsiiSerializable
The forecast scenario 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 software.amazon.awscdk.services.quicksight.*;
ForecastScenarioProperty forecastScenarioProperty = ForecastScenarioProperty.builder()
.whatIfPointScenario(WhatIfPointScenarioProperty.builder()
.date("date")
.value(123)
.build())
.whatIfRangeScenario(WhatIfRangeScenarioProperty.builder()
.endDate("endDate")
.startDate("startDate")
.value(123)
.build())
.build();
- See Also:
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classA builder forCfnAnalysis.ForecastScenarioPropertystatic final classAn implementation forCfnAnalysis.ForecastScenarioProperty -
Method Summary
Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getWhatIfPointScenario
The what-if analysis forecast setup with the target date.Returns union: either
IResolvableorCfnAnalysis.WhatIfPointScenarioProperty- See Also:
-
getWhatIfRangeScenario
The what-if analysis forecast setup with the date range.Returns union: either
IResolvableorCfnAnalysis.WhatIfRangeScenarioProperty- See Also:
-
builder
-