#[non_exhaustive]pub struct ModelPackageValidationSpecification {
pub validation_role: Option<String>,
pub validation_profiles: Option<Vec<ModelPackageValidationProfile>>,
}
Expand description
Specifies batch transform jobs that SageMaker runs to validate your model package.
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 to be used for the validation of the model package.
validation_profiles: Option<Vec<ModelPackageValidationProfile>>
An array of ModelPackageValidationProfile
objects, each of which specifies a batch transform job that SageMaker runs to validate your model package.
Implementations§
source§impl ModelPackageValidationSpecification
impl ModelPackageValidationSpecification
sourcepub fn validation_role(&self) -> Option<&str>
pub fn validation_role(&self) -> Option<&str>
The IAM roles to be used for the validation of the model package.
sourcepub fn validation_profiles(&self) -> &[ModelPackageValidationProfile]
pub fn validation_profiles(&self) -> &[ModelPackageValidationProfile]
An array of ModelPackageValidationProfile
objects, each of which specifies a batch transform job that SageMaker runs to validate your model package.
If no value was sent for this field, a default will be set. If you want to determine if no value was sent, use .validation_profiles.is_none()
.
source§impl ModelPackageValidationSpecification
impl ModelPackageValidationSpecification
sourcepub fn builder() -> ModelPackageValidationSpecificationBuilder
pub fn builder() -> ModelPackageValidationSpecificationBuilder
Creates a new builder-style object to manufacture ModelPackageValidationSpecification
.
Trait Implementations§
source§impl Clone for ModelPackageValidationSpecification
impl Clone for ModelPackageValidationSpecification
source§fn clone(&self) -> ModelPackageValidationSpecification
fn clone(&self) -> ModelPackageValidationSpecification
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 for ModelPackageValidationSpecification
impl PartialEq for ModelPackageValidationSpecification
source§fn eq(&self, other: &ModelPackageValidationSpecification) -> bool
fn eq(&self, other: &ModelPackageValidationSpecification) -> bool
Tests for
self
and other
values to be equal, and is used by ==
.impl StructuralPartialEq for ModelPackageValidationSpecification
Auto Trait Implementations§
impl Freeze for ModelPackageValidationSpecification
impl RefUnwindSafe for ModelPackageValidationSpecification
impl Send for ModelPackageValidationSpecification
impl Sync for ModelPackageValidationSpecification
impl Unpin for ModelPackageValidationSpecification
impl UnwindSafe for ModelPackageValidationSpecification
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
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)
🔬This is a nightly-only experimental API. (
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>
Converts
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>
Converts
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 moreCreates a shared type from an unshared type.