Show / Hide Table of Contents

Class CfnDashboard.ForecastScenarioProperty

The forecast scenario of a forecast in the line chart.

Inheritance
object
CfnDashboard.ForecastScenarioProperty
Implements
CfnDashboard.IForecastScenarioProperty
Inherited Members
object.GetType()
object.MemberwiseClone()
object.ToString()
object.Equals(object)
object.Equals(object, object)
object.ReferenceEquals(object, object)
object.GetHashCode()
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

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-dashboard-forecastscenario.html

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

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-dashboard-forecastscenario.html

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

object

Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-dashboard-forecastscenario.html#cfn-quicksight-dashboard-forecastscenario-whatifpointscenario

WhatIfRangeScenario

The what-if analysis forecast setup with the date range.

public object? WhatIfRangeScenario { get; set; }
Property Value

object

Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-dashboard-forecastscenario.html#cfn-quicksight-dashboard-forecastscenario-whatifrangescenario

Implements

CfnDashboard.IForecastScenarioProperty
Back to top Generated by DocFX