// Code generated by private/model/cli/gen-api/main.go. DO NOT EDIT. package forecastquery import ( "github.com/aws/aws-sdk-go-v2/aws" "github.com/aws/aws-sdk-go-v2/internal/awsutil" ) var _ aws.Config var _ = awsutil.Prettify // The forecast value for a specific date. Part of the Forecast object. type DataPoint struct { _ struct{} `type:"structure"` // The timestamp of the specific forecast. Timestamp *string `type:"string"` // The forecast value. Value *float64 `type:"double"` } // String returns the string representation func (s DataPoint) String() string { return awsutil.Prettify(s) } // Provides information about a forecast. Returned as part of the QueryForecast // response. type Forecast struct { _ struct{} `type:"structure"` // The forecast. // // The string of the string-to-array map is one of the following values: // // * p10 // // * p50 // // * p90 Predictions map[string][]DataPoint `type:"map"` } // String returns the string representation func (s Forecast) String() string { return awsutil.Prettify(s) }