pub struct LabelingJobResourceConfig {
pub volume_kms_key_id: Option<String>,
}
Expand description
Provides configuration information for labeling jobs.
Fields§
§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 training job. The VolumeKmsKeyId
can be any of the following formats:
-
// KMS Key ID
"1234abcd-12ab-34cd-56ef-1234567890ab"
-
// Amazon Resource Name (ARN) of a KMS Key
"arn:aws:kms:us-west-2:111122223333:key/1234abcd-12ab-34cd-56ef-1234567890ab"
Trait Implementations§
Source§impl Clone for LabelingJobResourceConfig
impl Clone for LabelingJobResourceConfig
Source§fn clone(&self) -> LabelingJobResourceConfig
fn clone(&self) -> LabelingJobResourceConfig
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 LabelingJobResourceConfig
impl Debug for LabelingJobResourceConfig
Source§impl Default for LabelingJobResourceConfig
impl Default for LabelingJobResourceConfig
Source§fn default() -> LabelingJobResourceConfig
fn default() -> LabelingJobResourceConfig
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for LabelingJobResourceConfig
impl<'de> Deserialize<'de> for LabelingJobResourceConfig
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
impl StructuralPartialEq for LabelingJobResourceConfig
Auto Trait Implementations§
impl Freeze for LabelingJobResourceConfig
impl RefUnwindSafe for LabelingJobResourceConfig
impl Send for LabelingJobResourceConfig
impl Sync for LabelingJobResourceConfig
impl Unpin for LabelingJobResourceConfig
impl UnwindSafe for LabelingJobResourceConfig
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