pub struct AlgorithmValidationSpecification {
pub validation_profiles: Vec<AlgorithmValidationProfile>,
pub validation_role: String,
}
Expand description
Specifies configurations for one or more training jobs that Amazon SageMaker runs to test the algorithm.
Fields§
§validation_profiles: Vec<AlgorithmValidationProfile>
An array of AlgorithmValidationProfile
objects, each of which specifies a training job and batch transform job that Amazon SageMaker runs to validate your algorithm.
validation_role: String
The IAM roles that Amazon SageMaker uses to run the training jobs.
Trait Implementations§
Source§impl Clone for AlgorithmValidationSpecification
impl Clone for AlgorithmValidationSpecification
Source§fn clone(&self) -> AlgorithmValidationSpecification
fn clone(&self) -> AlgorithmValidationSpecification
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 Default for AlgorithmValidationSpecification
impl Default for AlgorithmValidationSpecification
Source§fn default() -> AlgorithmValidationSpecification
fn default() -> AlgorithmValidationSpecification
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for AlgorithmValidationSpecification
impl<'de> Deserialize<'de> for AlgorithmValidationSpecification
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 AlgorithmValidationSpecification
impl PartialEq for AlgorithmValidationSpecification
Source§fn eq(&self, other: &AlgorithmValidationSpecification) -> bool
fn eq(&self, other: &AlgorithmValidationSpecification) -> bool
Tests for
self
and other
values to be equal, and is used by ==
.impl StructuralPartialEq for AlgorithmValidationSpecification
Auto Trait Implementations§
impl Freeze for AlgorithmValidationSpecification
impl RefUnwindSafe for AlgorithmValidationSpecification
impl Send for AlgorithmValidationSpecification
impl Sync for AlgorithmValidationSpecification
impl Unpin for AlgorithmValidationSpecification
impl UnwindSafe for AlgorithmValidationSpecification
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