pub struct Builder { /* private fields */ }
Expand description
A builder for ModelPackageValidationProfile
.
Implementations§
source§impl Builder
impl Builder
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
.