[][src]Struct rusoto_forecast::ParameterRanges

pub struct ParameterRanges {
    pub categorical_parameter_ranges: Option<Vec<CategoricalParameterRange>>,
    pub continuous_parameter_ranges: Option<Vec<ContinuousParameterRange>>,
    pub integer_parameter_ranges: Option<Vec<IntegerParameterRange>>,
}

Specifies the categorical, continuous, and integer hyperparameters, and their ranges of tunable values. The range of tunable values determines which values that a hyperparameter tuning job can choose for the specified hyperparameter. This object is part of the HyperParameterTuningJobConfig object.

Fields

categorical_parameter_ranges: Option<Vec<CategoricalParameterRange>>

Specifies the tunable range for each categorical hyperparameter.

continuous_parameter_ranges: Option<Vec<ContinuousParameterRange>>

Specifies the tunable range for each continuous hyperparameter.

integer_parameter_ranges: Option<Vec<IntegerParameterRange>>

Specifies the tunable range for each integer hyperparameter.

Trait Implementations

impl Clone for ParameterRanges[src]

impl Debug for ParameterRanges[src]

impl Default for ParameterRanges[src]

impl<'de> Deserialize<'de> for ParameterRanges[src]

impl PartialEq<ParameterRanges> for ParameterRanges[src]

impl Serialize for ParameterRanges[src]

impl StructuralPartialEq for ParameterRanges[src]

Auto Trait Implementations

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> DeserializeOwned for T where
    T: for<'de> Deserialize<'de>, 
[src]

impl<T> From<T> for T[src]

impl<T> Instrument for T[src]

impl<T> Instrument for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> Same<T> for T

type Output = T

Should always be Self

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.