pub struct ModelPackageValidationSpecification {
pub validation_profiles: Vec<ModelPackageValidationProfile>,
pub validation_role: String,
}
Expand description
Specifies batch transform jobs that Amazon SageMaker runs to validate your model package.
Fields§
§validation_profiles: Vec<ModelPackageValidationProfile>
An array of ModelPackageValidationProfile
objects, each of which specifies a batch transform job that Amazon SageMaker runs to validate your model package.
validation_role: String
The IAM roles to be used for the validation of the model package.
Trait Implementations§
Source§impl Clone for ModelPackageValidationSpecification
impl Clone for ModelPackageValidationSpecification
Source§fn clone(&self) -> ModelPackageValidationSpecification
fn clone(&self) -> ModelPackageValidationSpecification
Returns a duplicate 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 ModelPackageValidationSpecification
impl Default for ModelPackageValidationSpecification
Source§fn default() -> ModelPackageValidationSpecification
fn default() -> ModelPackageValidationSpecification
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for ModelPackageValidationSpecification
impl<'de> Deserialize<'de> for ModelPackageValidationSpecification
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 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