Interface ForecastComputation.Builder
- All Superinterfaces:
Buildable
,CopyableBuilder<ForecastComputation.Builder,
,ForecastComputation> SdkBuilder<ForecastComputation.Builder,
,ForecastComputation> SdkPojo
- Enclosing class:
ForecastComputation
-
Method Summary
Modifier and TypeMethodDescriptioncomputationId
(String computationId) The ID for a computation.customSeasonalityValue
(Integer customSeasonalityValue) The custom seasonality value setup of a forecast computation.lowerBoundary
(Double lowerBoundary) The lower boundary setup of a forecast computation.The name of a computation.periodsBackward
(Integer periodsBackward) The periods backward setup of a forecast computation.periodsForward
(Integer periodsForward) The periods forward setup of a forecast computation.predictionInterval
(Integer predictionInterval) The prediction interval setup of a forecast computation.seasonality
(String seasonality) The seasonality setup of a forecast computation.seasonality
(ForecastComputationSeasonality seasonality) The seasonality setup of a forecast computation.default ForecastComputation.Builder
time
(Consumer<DimensionField.Builder> time) The time field that is used in a computation.time
(DimensionField time) The time field that is used in a computation.upperBoundary
(Double upperBoundary) The upper boundary setup of a forecast computation.default ForecastComputation.Builder
value
(Consumer<MeasureField.Builder> value) The value field that is used in a computation.value
(MeasureField value) The value field that is used in a computation.Methods inherited from interface software.amazon.awssdk.utils.builder.CopyableBuilder
copy
Methods inherited from interface software.amazon.awssdk.utils.builder.SdkBuilder
applyMutation, build
Methods inherited from interface software.amazon.awssdk.core.SdkPojo
equalsBySdkFields, sdkFields
-
Method Details
-
computationId
The ID for a computation.
- Parameters:
computationId
- The ID for a computation.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
name
The name of a computation.
- Parameters:
name
- The name of a computation.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
time
The time field that is used in a computation.
- Parameters:
time
- The time field that is used in a computation.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
time
The time field that is used in a computation.
This is a convenience method that creates an instance of theDimensionField.Builder
avoiding the need to create one manually viaDimensionField.builder()
.When the
Consumer
completes,SdkBuilder.build()
is called immediately and its result is passed totime(DimensionField)
.- Parameters:
time
- a consumer that will call methods onDimensionField.Builder
- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
-
value
The value field that is used in a computation.
- Parameters:
value
- The value field that is used in a computation.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
value
The value field that is used in a computation.
This is a convenience method that creates an instance of theMeasureField.Builder
avoiding the need to create one manually viaMeasureField.builder()
.When the
Consumer
completes,SdkBuilder.build()
is called immediately and its result is passed tovalue(MeasureField)
.- Parameters:
value
- a consumer that will call methods onMeasureField.Builder
- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
-
periodsForward
The periods forward setup of a forecast computation.
- Parameters:
periodsForward
- The periods forward setup of a forecast computation.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
periodsBackward
The periods backward setup of a forecast computation.
- Parameters:
periodsBackward
- The periods backward setup of a forecast computation.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
upperBoundary
The upper boundary setup of a forecast computation.
- Parameters:
upperBoundary
- The upper boundary setup of a forecast computation.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
lowerBoundary
The lower boundary setup of a forecast computation.
- Parameters:
lowerBoundary
- The lower boundary setup of a forecast computation.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
predictionInterval
The prediction interval setup of a forecast computation.
- Parameters:
predictionInterval
- The prediction interval setup of a forecast computation.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
seasonality
The seasonality setup of a forecast computation. Choose one of the following options:
-
AUTOMATIC
-
CUSTOM
: Checks the custom seasonality value.
- Parameters:
seasonality
- The seasonality setup of a forecast computation. Choose one of the following options:-
AUTOMATIC
-
CUSTOM
: Checks the custom seasonality value.
-
- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
-
-
seasonality
The seasonality setup of a forecast computation. Choose one of the following options:
-
AUTOMATIC
-
CUSTOM
: Checks the custom seasonality value.
- Parameters:
seasonality
- The seasonality setup of a forecast computation. Choose one of the following options:-
AUTOMATIC
-
CUSTOM
: Checks the custom seasonality value.
-
- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
-
-
customSeasonalityValue
The custom seasonality value setup of a forecast computation.
- Parameters:
customSeasonalityValue
- The custom seasonality value setup of a forecast computation.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-