Struct aws_sdk_forecast::model::parameter_ranges::Builder
source · [−]pub struct Builder { /* private fields */ }Expand description
A builder for ParameterRanges.
Implementations
sourceimpl Builder
impl Builder
sourcepub fn categorical_parameter_ranges(
self,
input: CategoricalParameterRange
) -> Self
pub fn categorical_parameter_ranges(
self,
input: CategoricalParameterRange
) -> Self
Appends an item to categorical_parameter_ranges.
To override the contents of this collection use set_categorical_parameter_ranges.
Specifies the tunable range for each categorical hyperparameter.
sourcepub fn set_categorical_parameter_ranges(
self,
input: Option<Vec<CategoricalParameterRange>>
) -> Self
pub fn set_categorical_parameter_ranges(
self,
input: Option<Vec<CategoricalParameterRange>>
) -> Self
Specifies the tunable range for each categorical hyperparameter.
sourcepub fn continuous_parameter_ranges(self, input: ContinuousParameterRange) -> Self
pub fn continuous_parameter_ranges(self, input: ContinuousParameterRange) -> Self
Appends an item to continuous_parameter_ranges.
To override the contents of this collection use set_continuous_parameter_ranges.
Specifies the tunable range for each continuous hyperparameter.
sourcepub fn set_continuous_parameter_ranges(
self,
input: Option<Vec<ContinuousParameterRange>>
) -> Self
pub fn set_continuous_parameter_ranges(
self,
input: Option<Vec<ContinuousParameterRange>>
) -> Self
Specifies the tunable range for each continuous hyperparameter.
sourcepub fn integer_parameter_ranges(self, input: IntegerParameterRange) -> Self
pub fn integer_parameter_ranges(self, input: IntegerParameterRange) -> Self
Appends an item to integer_parameter_ranges.
To override the contents of this collection use set_integer_parameter_ranges.
Specifies the tunable range for each integer hyperparameter.
sourcepub fn set_integer_parameter_ranges(
self,
input: Option<Vec<IntegerParameterRange>>
) -> Self
pub fn set_integer_parameter_ranges(
self,
input: Option<Vec<IntegerParameterRange>>
) -> Self
Specifies the tunable range for each integer hyperparameter.
sourcepub fn build(self) -> ParameterRanges
pub fn build(self) -> ParameterRanges
Consumes the builder and constructs a ParameterRanges.