pub struct ModelPackageValidationProfile {
pub profile_name: String,
pub transform_job_definition: TransformJobDefinition,
}
Expand description
Contains data, such as the inputs and targeted instance types that are used in the process of validating the model package.
The data provided in the validation profile is made available to your buyers on AWS Marketplace.
Fields§
§profile_name: String
The name of the profile for the model package.
transform_job_definition: TransformJobDefinition
The TransformJobDefinition
object that describes the transform job used for the validation of the model package.
Trait Implementations§
Source§impl Clone for ModelPackageValidationProfile
impl Clone for ModelPackageValidationProfile
Source§fn clone(&self) -> ModelPackageValidationProfile
fn clone(&self) -> ModelPackageValidationProfile
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 ModelPackageValidationProfile
impl Default for ModelPackageValidationProfile
Source§fn default() -> ModelPackageValidationProfile
fn default() -> ModelPackageValidationProfile
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for ModelPackageValidationProfile
impl<'de> Deserialize<'de> for ModelPackageValidationProfile
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 ModelPackageValidationProfile
impl PartialEq for ModelPackageValidationProfile
Source§fn eq(&self, other: &ModelPackageValidationProfile) -> bool
fn eq(&self, other: &ModelPackageValidationProfile) -> bool
Tests for
self
and other
values to be equal, and is used by ==
.impl StructuralPartialEq for ModelPackageValidationProfile
Auto Trait Implementations§
impl Freeze for ModelPackageValidationProfile
impl RefUnwindSafe for ModelPackageValidationProfile
impl Send for ModelPackageValidationProfile
impl Sync for ModelPackageValidationProfile
impl Unpin for ModelPackageValidationProfile
impl UnwindSafe for ModelPackageValidationProfile
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