#[non_exhaustive]pub struct AlgorithmValidationSpecification {
pub validation_role: Option<String>,
pub validation_profiles: Option<Vec<AlgorithmValidationProfile>>,
}
Expand description
Specifies configurations for one or more training jobs that SageMaker runs to test the algorithm.
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.validation_role: Option<String>
The IAM roles that SageMaker uses to run the training jobs.
validation_profiles: Option<Vec<AlgorithmValidationProfile>>
An array of AlgorithmValidationProfile
objects, each of which specifies a training job and batch transform job that SageMaker runs to validate your algorithm.
Implementations§
source§impl AlgorithmValidationSpecification
impl AlgorithmValidationSpecification
sourcepub fn validation_role(&self) -> Option<&str>
pub fn validation_role(&self) -> Option<&str>
The IAM roles that SageMaker uses to run the training jobs.
sourcepub fn validation_profiles(&self) -> Option<&[AlgorithmValidationProfile]>
pub fn validation_profiles(&self) -> Option<&[AlgorithmValidationProfile]>
An array of AlgorithmValidationProfile
objects, each of which specifies a training job and batch transform job that SageMaker runs to validate your algorithm.
source§impl AlgorithmValidationSpecification
impl AlgorithmValidationSpecification
sourcepub fn builder() -> AlgorithmValidationSpecificationBuilder
pub fn builder() -> AlgorithmValidationSpecificationBuilder
Creates a new builder-style object to manufacture AlgorithmValidationSpecification
.
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 PartialEq<AlgorithmValidationSpecification> for AlgorithmValidationSpecification
impl PartialEq<AlgorithmValidationSpecification> for AlgorithmValidationSpecification
source§fn eq(&self, other: &AlgorithmValidationSpecification) -> bool
fn eq(&self, other: &AlgorithmValidationSpecification) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.impl StructuralPartialEq for AlgorithmValidationSpecification
Auto Trait Implementations§
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