pub struct InputDataConfig {
pub dataset_group_arn: String,
pub supplementary_features: Option<Vec<SupplementaryFeature>>,
}Expand description
The data used to train a predictor. The data includes a dataset group and any supplementary features. You specify this object in the CreatePredictor request.
Fields§
§dataset_group_arn: StringThe Amazon Resource Name (ARN) of the dataset group.
supplementary_features: Option<Vec<SupplementaryFeature>>An array of supplementary features. The only supported feature is a holiday calendar.
Trait Implementations§
Source§impl Clone for InputDataConfig
impl Clone for InputDataConfig
Source§fn clone(&self) -> InputDataConfig
fn clone(&self) -> InputDataConfig
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Debug for InputDataConfig
impl Debug for InputDataConfig
Source§impl Default for InputDataConfig
impl Default for InputDataConfig
Source§fn default() -> InputDataConfig
fn default() -> InputDataConfig
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for InputDataConfig
impl<'de> Deserialize<'de> for InputDataConfig
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Source§impl PartialEq for InputDataConfig
impl PartialEq for InputDataConfig
Source§impl Serialize for InputDataConfig
impl Serialize for InputDataConfig
impl StructuralPartialEq for InputDataConfig
Auto Trait Implementations§
impl Freeze for InputDataConfig
impl RefUnwindSafe for InputDataConfig
impl Send for InputDataConfig
impl Sync for InputDataConfig
impl Unpin for InputDataConfig
impl UnwindSafe for InputDataConfig
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more