pub struct S3MachineLearningModelResourceData {
pub destination_path: Option<String>,
pub owner_setting: Option<ResourceDownloadOwnerSetting>,
pub s3_uri: Option<String>,
}Expand description
Attributes that define an Amazon S3 machine learning resource.
Fields§
§destination_path: Option<String>The absolute local path of the resource inside the Lambda environment.
owner_setting: Option<ResourceDownloadOwnerSetting>§s3_uri: Option<String>The URI of the source model in an S3 bucket. The model package must be in tar.gz or .zip format.
Trait Implementations§
Source§impl Clone for S3MachineLearningModelResourceData
impl Clone for S3MachineLearningModelResourceData
Source§fn clone(&self) -> S3MachineLearningModelResourceData
fn clone(&self) -> S3MachineLearningModelResourceData
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Default for S3MachineLearningModelResourceData
impl Default for S3MachineLearningModelResourceData
Source§fn default() -> S3MachineLearningModelResourceData
fn default() -> S3MachineLearningModelResourceData
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for S3MachineLearningModelResourceData
impl<'de> Deserialize<'de> for S3MachineLearningModelResourceData
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 S3MachineLearningModelResourceData
impl PartialEq for S3MachineLearningModelResourceData
Source§fn eq(&self, other: &S3MachineLearningModelResourceData) -> bool
fn eq(&self, other: &S3MachineLearningModelResourceData) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for S3MachineLearningModelResourceData
Auto Trait Implementations§
impl Freeze for S3MachineLearningModelResourceData
impl RefUnwindSafe for S3MachineLearningModelResourceData
impl Send for S3MachineLearningModelResourceData
impl Sync for S3MachineLearningModelResourceData
impl Unpin for S3MachineLearningModelResourceData
impl UnsafeUnpin for S3MachineLearningModelResourceData
impl UnwindSafe for S3MachineLearningModelResourceData
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