Struct aws_sdk_sagemaker::types::HubContentDependency
source · #[non_exhaustive]pub struct HubContentDependency {
pub dependency_origin_path: Option<String>,
pub dependency_copy_path: Option<String>,
}
Expand description
Any dependencies related to hub content, such as scripts, model artifacts, datasets, or notebooks.
Fields (Non-exhaustive)§
This struct is marked as non-exhaustive
Non-exhaustive structs could have additional fields added in future. Therefore, non-exhaustive structs cannot be constructed in external crates using the traditional
Struct { .. }
syntax; cannot be matched against without a wildcard ..
; and struct update syntax will not work.dependency_origin_path: Option<String>
The hub content dependency origin path.
dependency_copy_path: Option<String>
The hub content dependency copy path.
Implementations§
source§impl HubContentDependency
impl HubContentDependency
sourcepub fn dependency_origin_path(&self) -> Option<&str>
pub fn dependency_origin_path(&self) -> Option<&str>
The hub content dependency origin path.
sourcepub fn dependency_copy_path(&self) -> Option<&str>
pub fn dependency_copy_path(&self) -> Option<&str>
The hub content dependency copy path.
source§impl HubContentDependency
impl HubContentDependency
sourcepub fn builder() -> HubContentDependencyBuilder
pub fn builder() -> HubContentDependencyBuilder
Creates a new builder-style object to manufacture HubContentDependency
.
Trait Implementations§
source§impl Clone for HubContentDependency
impl Clone for HubContentDependency
source§fn clone(&self) -> HubContentDependency
fn clone(&self) -> HubContentDependency
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 HubContentDependency
impl Debug for HubContentDependency
source§impl PartialEq for HubContentDependency
impl PartialEq for HubContentDependency
source§fn eq(&self, other: &HubContentDependency) -> bool
fn eq(&self, other: &HubContentDependency) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.impl StructuralPartialEq for HubContentDependency
Auto Trait Implementations§
impl RefUnwindSafe for HubContentDependency
impl Send for HubContentDependency
impl Sync for HubContentDependency
impl Unpin for HubContentDependency
impl UnwindSafe for HubContentDependency
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
source§impl<T> Instrument for T
impl<T> Instrument for T
source§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
source§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
Creates a shared type from an unshared type.