pub struct ChannelSpecification {
pub description: Option<String>,
pub is_required: Option<bool>,
pub name: String,
pub supported_compression_types: Option<Vec<String>>,
pub supported_content_types: Vec<String>,
pub supported_input_modes: Vec<String>,
}
Expand description
Defines a named input source, called a channel, to be used by an algorithm.
Fields§
§description: Option<String>
A brief description of the channel.
is_required: Option<bool>
Indicates whether the channel is required by the algorithm.
name: String
The name of the channel.
supported_compression_types: Option<Vec<String>>
The allowed compression types, if data compression is used.
supported_content_types: Vec<String>
The supported MIME types for the data.
supported_input_modes: Vec<String>
The allowed input mode, either FILE or PIPE.
In FILE mode, Amazon SageMaker copies the data from the input source onto the local Amazon Elastic Block Store (Amazon EBS) volumes before starting your training algorithm. This is the most commonly used input mode.
In PIPE mode, Amazon SageMaker streams input data from the source directly to your algorithm without using the EBS volume.
Trait Implementations§
Source§impl Clone for ChannelSpecification
impl Clone for ChannelSpecification
Source§fn clone(&self) -> ChannelSpecification
fn clone(&self) -> ChannelSpecification
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 ChannelSpecification
impl Debug for ChannelSpecification
Source§impl Default for ChannelSpecification
impl Default for ChannelSpecification
Source§fn default() -> ChannelSpecification
fn default() -> ChannelSpecification
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for ChannelSpecification
impl<'de> Deserialize<'de> for ChannelSpecification
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 ChannelSpecification
impl PartialEq for ChannelSpecification
Source§impl Serialize for ChannelSpecification
impl Serialize for ChannelSpecification
impl StructuralPartialEq for ChannelSpecification
Auto Trait Implementations§
impl Freeze for ChannelSpecification
impl RefUnwindSafe for ChannelSpecification
impl Send for ChannelSpecification
impl Sync for ChannelSpecification
impl Unpin for ChannelSpecification
impl UnwindSafe for ChannelSpecification
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