Struct aws_sdk_sagemaker::types::InfraCheckConfig
source · #[non_exhaustive]pub struct InfraCheckConfig {
pub enable_infra_check: Option<bool>,
}
Expand description
Configuration information for the infrastructure health check of a training job. A SageMaker-provided health check tests the health of instance hardware and cluster network connectivity.
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.enable_infra_check: Option<bool>
Enables an infrastructure health check.
Implementations§
source§impl InfraCheckConfig
impl InfraCheckConfig
sourcepub fn enable_infra_check(&self) -> Option<bool>
pub fn enable_infra_check(&self) -> Option<bool>
Enables an infrastructure health check.
source§impl InfraCheckConfig
impl InfraCheckConfig
sourcepub fn builder() -> InfraCheckConfigBuilder
pub fn builder() -> InfraCheckConfigBuilder
Creates a new builder-style object to manufacture InfraCheckConfig
.
Trait Implementations§
source§impl Clone for InfraCheckConfig
impl Clone for InfraCheckConfig
source§fn clone(&self) -> InfraCheckConfig
fn clone(&self) -> InfraCheckConfig
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 InfraCheckConfig
impl Debug for InfraCheckConfig
source§impl PartialEq for InfraCheckConfig
impl PartialEq for InfraCheckConfig
source§fn eq(&self, other: &InfraCheckConfig) -> bool
fn eq(&self, other: &InfraCheckConfig) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.impl StructuralPartialEq for InfraCheckConfig
Auto Trait Implementations§
impl RefUnwindSafe for InfraCheckConfig
impl Send for InfraCheckConfig
impl Sync for InfraCheckConfig
impl Unpin for InfraCheckConfig
impl UnwindSafe for InfraCheckConfig
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.