Class CfnDashboard.ForecastScenarioProperty
The forecast scenario of a forecast in the line chart.
Implements
Inherited Members
Namespace: Amazon.CDK.AWS.QuickSight
Assembly: Amazon.CDK.Lib.dll
Syntax (csharp)
public class CfnDashboard.ForecastScenarioProperty : CfnDashboard.IForecastScenarioProperty
Syntax (vb)
Public Class CfnDashboard.ForecastScenarioProperty Implements CfnDashboard.IForecastScenarioProperty
Remarks
ExampleMetadata: fixture=_generated
Examples
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
using Amazon.CDK.AWS.QuickSight;
var forecastScenarioProperty = new ForecastScenarioProperty {
WhatIfPointScenario = new WhatIfPointScenarioProperty {
Date = "date",
Value = 123
},
WhatIfRangeScenario = new WhatIfRangeScenarioProperty {
EndDate = "endDate",
StartDate = "startDate",
Value = 123
}
};
Synopsis
Constructors
ForecastScenarioProperty() | The forecast scenario of a forecast in the line chart. |
Properties
WhatIfPointScenario | The what-if analysis forecast setup with the target date. |
WhatIfRangeScenario | The what-if analysis forecast setup with the date range. |
Constructors
ForecastScenarioProperty()
The forecast scenario of a forecast in the line chart.
public ForecastScenarioProperty()
Remarks
ExampleMetadata: fixture=_generated
Examples
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
using Amazon.CDK.AWS.QuickSight;
var forecastScenarioProperty = new ForecastScenarioProperty {
WhatIfPointScenario = new WhatIfPointScenarioProperty {
Date = "date",
Value = 123
},
WhatIfRangeScenario = new WhatIfRangeScenarioProperty {
EndDate = "endDate",
StartDate = "startDate",
Value = 123
}
};
Properties
WhatIfPointScenario
The what-if analysis forecast setup with the target date.
public object? WhatIfPointScenario { get; set; }
Property Value
Remarks
WhatIfRangeScenario
The what-if analysis forecast setup with the date range.
public object? WhatIfRangeScenario { get; set; }