package awsquicksight // 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 "github.com/aws/aws-cdk-go/awscdk" // // whatIfPointScenarioProperty := &WhatIfPointScenarioProperty{ // Date: jsii.String("date"), // Value: jsii.Number(123), // } // // See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-analysis-whatifpointscenario.html // type CfnAnalysis_WhatIfPointScenarioProperty struct { // The date that you need the forecast results for. // See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-analysis-whatifpointscenario.html#cfn-quicksight-analysis-whatifpointscenario-date // Date *string `field:"required" json:"date" yaml:"date"` // The target value that you want to meet for the provided date. // See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-analysis-whatifpointscenario.html#cfn-quicksight-analysis-whatifpointscenario-value // Value *float64 `field:"required" json:"value" yaml:"value"` }