Struct aws_sdk_sagemaker::types::builders::ModelPackageGroupBuilder
source · #[non_exhaustive]pub struct ModelPackageGroupBuilder { /* private fields */ }
Expand description
A builder for ModelPackageGroup
.
Implementations§
source§impl ModelPackageGroupBuilder
impl ModelPackageGroupBuilder
sourcepub fn model_package_group_name(self, input: impl Into<String>) -> Self
pub fn model_package_group_name(self, input: impl Into<String>) -> Self
The name of the model group.
sourcepub fn set_model_package_group_name(self, input: Option<String>) -> Self
pub fn set_model_package_group_name(self, input: Option<String>) -> Self
The name of the model group.
sourcepub fn model_package_group_arn(self, input: impl Into<String>) -> Self
pub fn model_package_group_arn(self, input: impl Into<String>) -> Self
The Amazon Resource Name (ARN) of the model group.
sourcepub fn set_model_package_group_arn(self, input: Option<String>) -> Self
pub fn set_model_package_group_arn(self, input: Option<String>) -> Self
The Amazon Resource Name (ARN) of the model group.
sourcepub fn model_package_group_description(self, input: impl Into<String>) -> Self
pub fn model_package_group_description(self, input: impl Into<String>) -> Self
The description for the model group.
sourcepub fn set_model_package_group_description(self, input: Option<String>) -> Self
pub fn set_model_package_group_description(self, input: Option<String>) -> Self
The description for the model group.
sourcepub fn creation_time(self, input: DateTime) -> Self
pub fn creation_time(self, input: DateTime) -> Self
The time that the model group was created.
sourcepub fn set_creation_time(self, input: Option<DateTime>) -> Self
pub fn set_creation_time(self, input: Option<DateTime>) -> Self
The time that the model group was created.
sourcepub fn created_by(self, input: UserContext) -> Self
pub fn created_by(self, input: UserContext) -> Self
Information about the user who created or modified an experiment, trial, trial component, lineage group, project, or model card.
sourcepub fn set_created_by(self, input: Option<UserContext>) -> Self
pub fn set_created_by(self, input: Option<UserContext>) -> Self
Information about the user who created or modified an experiment, trial, trial component, lineage group, project, or model card.
sourcepub fn model_package_group_status(self, input: ModelPackageGroupStatus) -> Self
pub fn model_package_group_status(self, input: ModelPackageGroupStatus) -> Self
The status of the model group. This can be one of the following values.
-
PENDING
- The model group is pending being created. -
IN_PROGRESS
- The model group is in the process of being created. -
COMPLETED
- The model group was successfully created. -
FAILED
- The model group failed. -
DELETING
- The model group is in the process of being deleted. -
DELETE_FAILED
- SageMaker failed to delete the model group.
sourcepub fn set_model_package_group_status(
self,
input: Option<ModelPackageGroupStatus>
) -> Self
pub fn set_model_package_group_status( self, input: Option<ModelPackageGroupStatus> ) -> Self
The status of the model group. This can be one of the following values.
-
PENDING
- The model group is pending being created. -
IN_PROGRESS
- The model group is in the process of being created. -
COMPLETED
- The model group was successfully created. -
FAILED
- The model group failed. -
DELETING
- The model group is in the process of being deleted. -
DELETE_FAILED
- SageMaker failed to delete the model group.
Appends an item to tags
.
To override the contents of this collection use set_tags
.
A list of the tags associated with the model group. For more information, see Tagging Amazon Web Services resources in the Amazon Web Services General Reference Guide.
A list of the tags associated with the model group. For more information, see Tagging Amazon Web Services resources in the Amazon Web Services General Reference Guide.
sourcepub fn build(self) -> ModelPackageGroup
pub fn build(self) -> ModelPackageGroup
Consumes the builder and constructs a ModelPackageGroup
.
Trait Implementations§
source§impl Clone for ModelPackageGroupBuilder
impl Clone for ModelPackageGroupBuilder
source§fn clone(&self) -> ModelPackageGroupBuilder
fn clone(&self) -> ModelPackageGroupBuilder
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read moresource§impl Debug for ModelPackageGroupBuilder
impl Debug for ModelPackageGroupBuilder
source§impl Default for ModelPackageGroupBuilder
impl Default for ModelPackageGroupBuilder
source§fn default() -> ModelPackageGroupBuilder
fn default() -> ModelPackageGroupBuilder
source§impl PartialEq<ModelPackageGroupBuilder> for ModelPackageGroupBuilder
impl PartialEq<ModelPackageGroupBuilder> for ModelPackageGroupBuilder
source§fn eq(&self, other: &ModelPackageGroupBuilder) -> bool
fn eq(&self, other: &ModelPackageGroupBuilder) -> bool
self
and other
values to be equal, and is used
by ==
.