[][src]Struct rusoto_sagemaker::DataSource

pub struct DataSource {
    pub file_system_data_source: Option<FileSystemDataSource>,
    pub s3_data_source: Option<S3DataSource>,
}

Describes the location of the channel data.

Fields

file_system_data_source: Option<FileSystemDataSource>

The file system that is associated with a channel.

s3_data_source: Option<S3DataSource>

The S3 location of the data source that is associated with a channel.

Trait Implementations

impl Clone for DataSource[src]

impl Debug for DataSource[src]

impl Default for DataSource[src]

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

impl PartialEq<DataSource> for DataSource[src]

impl Serialize for DataSource[src]

impl StructuralPartialEq for DataSource[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.