Struct aws_sdk_sagemaker::types::ClusterEbsVolumeConfig
source · #[non_exhaustive]pub struct ClusterEbsVolumeConfig {
pub volume_size_in_gb: Option<i32>,
}
Expand description
Defines the configuration for attaching an additional Amazon Elastic Block Store (EBS) volume to each instance of the SageMaker HyperPod cluster instance group. To learn more, see SageMaker HyperPod release notes: June 20, 2024.
Fields (Non-exhaustive)§
This struct is marked as non-exhaustive
Struct { .. }
syntax; cannot be matched against without a wildcard ..
; and struct update syntax will not work.volume_size_in_gb: Option<i32>
The size in gigabytes (GB) of the additional EBS volume to be attached to the instances in the SageMaker HyperPod cluster instance group. The additional EBS volume is attached to each instance within the SageMaker HyperPod cluster instance group and mounted to /opt/sagemaker
.
Implementations§
source§impl ClusterEbsVolumeConfig
impl ClusterEbsVolumeConfig
sourcepub fn volume_size_in_gb(&self) -> Option<i32>
pub fn volume_size_in_gb(&self) -> Option<i32>
The size in gigabytes (GB) of the additional EBS volume to be attached to the instances in the SageMaker HyperPod cluster instance group. The additional EBS volume is attached to each instance within the SageMaker HyperPod cluster instance group and mounted to /opt/sagemaker
.
source§impl ClusterEbsVolumeConfig
impl ClusterEbsVolumeConfig
sourcepub fn builder() -> ClusterEbsVolumeConfigBuilder
pub fn builder() -> ClusterEbsVolumeConfigBuilder
Creates a new builder-style object to manufacture ClusterEbsVolumeConfig
.
Trait Implementations§
source§impl Clone for ClusterEbsVolumeConfig
impl Clone for ClusterEbsVolumeConfig
source§fn clone(&self) -> ClusterEbsVolumeConfig
fn clone(&self) -> ClusterEbsVolumeConfig
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read moresource§impl Debug for ClusterEbsVolumeConfig
impl Debug for ClusterEbsVolumeConfig
source§impl PartialEq for ClusterEbsVolumeConfig
impl PartialEq for ClusterEbsVolumeConfig
source§fn eq(&self, other: &ClusterEbsVolumeConfig) -> bool
fn eq(&self, other: &ClusterEbsVolumeConfig) -> bool
self
and other
values to be equal, and is used
by ==
.impl StructuralPartialEq for ClusterEbsVolumeConfig
Auto Trait Implementations§
impl Freeze for ClusterEbsVolumeConfig
impl RefUnwindSafe for ClusterEbsVolumeConfig
impl Send for ClusterEbsVolumeConfig
impl Sync for ClusterEbsVolumeConfig
impl Unpin for ClusterEbsVolumeConfig
impl UnwindSafe for ClusterEbsVolumeConfig
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
source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
source§default unsafe fn clone_to_uninit(&self, dst: *mut T)
default unsafe fn clone_to_uninit(&self, dst: *mut T)
clone_to_uninit
)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>
source§impl<T> IntoEither for T
impl<T> IntoEither for T
source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
self
into a Left
variant of Either<Self, Self>
if into_left
is true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read moresource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
self
into a Left
variant of Either<Self, Self>
if into_left(&self)
returns true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read more