pub struct ProcessingClusterConfig {
pub instance_count: i64,
pub instance_type: String,
pub volume_kms_key_id: Option<String>,
pub volume_size_in_gb: i64,
}
Expand description
Configuration for the cluster used to run a processing job.
Fields§
§instance_count: i64
The number of ML compute instances to use in the processing job. For distributed processing jobs, specify a value greater than 1. The default value is 1.
instance_type: String
The ML compute instance type for the processing job.
volume_kms_key_id: Option<String>
The AWS Key Management Service (AWS KMS) key that Amazon SageMaker uses to encrypt data on the storage volume attached to the ML compute instance(s) that run the processing job.
volume_size_in_gb: i64
The size of the ML storage volume in gigabytes that you want to provision. You must specify sufficient ML storage for your scenario.
Trait Implementations§
Source§impl Clone for ProcessingClusterConfig
impl Clone for ProcessingClusterConfig
Source§fn clone(&self) -> ProcessingClusterConfig
fn clone(&self) -> ProcessingClusterConfig
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 ProcessingClusterConfig
impl Debug for ProcessingClusterConfig
Source§impl Default for ProcessingClusterConfig
impl Default for ProcessingClusterConfig
Source§fn default() -> ProcessingClusterConfig
fn default() -> ProcessingClusterConfig
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for ProcessingClusterConfig
impl<'de> Deserialize<'de> for ProcessingClusterConfig
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 ProcessingClusterConfig
impl PartialEq for ProcessingClusterConfig
Source§impl Serialize for ProcessingClusterConfig
impl Serialize for ProcessingClusterConfig
impl StructuralPartialEq for ProcessingClusterConfig
Auto Trait Implementations§
impl Freeze for ProcessingClusterConfig
impl RefUnwindSafe for ProcessingClusterConfig
impl Send for ProcessingClusterConfig
impl Sync for ProcessingClusterConfig
impl Unpin for ProcessingClusterConfig
impl UnwindSafe for ProcessingClusterConfig
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