Struct aws_sdk_sagemaker::model::model_package_group::Builder
source · pub struct Builder { /* private fields */ }
Expand description
A builder for ModelPackageGroup
.
Implementations§
source§impl Builder
impl Builder
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
.