[][src]Struct rusoto_sagemaker::FileSystemDataSource

pub struct FileSystemDataSource {
    pub directory_path: String,
    pub file_system_access_mode: String,
    pub file_system_id: String,
    pub file_system_type: String,
}

Specifies a file system data source for a channel.

Fields

directory_path: String

The full path to the directory to associate with the channel.

file_system_access_mode: String

The access mode of the mount of the directory associated with the channel. A directory can be mounted either in ro (read-only) or rw (read-write) mode.

file_system_id: String

The file system id.

file_system_type: String

The file system type.

Trait Implementations

impl Clone for FileSystemDataSource[src]

impl Debug for FileSystemDataSource[src]

impl Default for FileSystemDataSource[src]

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

impl PartialEq<FileSystemDataSource> for FileSystemDataSource[src]

impl Serialize for FileSystemDataSource[src]

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