pub struct AutoMLDataSource {
pub s3_data_source: AutoMLS3DataSource,
}
Expand description
The data source for the AutoPilot job.
Fields§
§s3_data_source: AutoMLS3DataSource
The Amazon S3 location of the input data.
The input data must be in CSV format and contain at least 1000 rows.
Trait Implementations§
Source§impl Clone for AutoMLDataSource
impl Clone for AutoMLDataSource
Source§fn clone(&self) -> AutoMLDataSource
fn clone(&self) -> AutoMLDataSource
Returns a copy 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 AutoMLDataSource
impl Debug for AutoMLDataSource
Source§impl Default for AutoMLDataSource
impl Default for AutoMLDataSource
Source§fn default() -> AutoMLDataSource
fn default() -> AutoMLDataSource
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for AutoMLDataSource
impl<'de> Deserialize<'de> for AutoMLDataSource
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 AutoMLDataSource
impl PartialEq for AutoMLDataSource
Source§impl Serialize for AutoMLDataSource
impl Serialize for AutoMLDataSource
impl StructuralPartialEq for AutoMLDataSource
Auto Trait Implementations§
impl Freeze for AutoMLDataSource
impl RefUnwindSafe for AutoMLDataSource
impl Send for AutoMLDataSource
impl Sync for AutoMLDataSource
impl Unpin for AutoMLDataSource
impl UnwindSafe for AutoMLDataSource
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