#[non_exhaustive]pub struct ModelPackageValidationProfileBuilder { /* private fields */ }
Expand description
A builder for ModelPackageValidationProfile
.
Implementations§
source§impl ModelPackageValidationProfileBuilder
impl ModelPackageValidationProfileBuilder
sourcepub fn profile_name(self, input: impl Into<String>) -> Self
pub fn profile_name(self, input: impl Into<String>) -> Self
The name of the profile for the model package.
sourcepub fn set_profile_name(self, input: Option<String>) -> Self
pub fn set_profile_name(self, input: Option<String>) -> Self
The name of the profile for the model package.
sourcepub fn transform_job_definition(self, input: TransformJobDefinition) -> Self
pub fn transform_job_definition(self, input: TransformJobDefinition) -> Self
The TransformJobDefinition
object that describes the transform job used for the validation of the model package.
sourcepub fn set_transform_job_definition(
self,
input: Option<TransformJobDefinition>
) -> Self
pub fn set_transform_job_definition( self, input: Option<TransformJobDefinition> ) -> Self
The TransformJobDefinition
object that describes the transform job used for the validation of the model package.
sourcepub fn build(self) -> ModelPackageValidationProfile
pub fn build(self) -> ModelPackageValidationProfile
Consumes the builder and constructs a ModelPackageValidationProfile
.
Trait Implementations§
source§impl Clone for ModelPackageValidationProfileBuilder
impl Clone for ModelPackageValidationProfileBuilder
source§fn clone(&self) -> ModelPackageValidationProfileBuilder
fn clone(&self) -> ModelPackageValidationProfileBuilder
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 ModelPackageValidationProfileBuilder
impl Default for ModelPackageValidationProfileBuilder
source§fn default() -> ModelPackageValidationProfileBuilder
fn default() -> ModelPackageValidationProfileBuilder
Returns the “default value” for a type. Read more
source§impl PartialEq<ModelPackageValidationProfileBuilder> for ModelPackageValidationProfileBuilder
impl PartialEq<ModelPackageValidationProfileBuilder> for ModelPackageValidationProfileBuilder
source§fn eq(&self, other: &ModelPackageValidationProfileBuilder) -> bool
fn eq(&self, other: &ModelPackageValidationProfileBuilder) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.