Struct aws_sdk_sagemaker::model::experiment::Builder
source · pub struct Builder { /* private fields */ }
Expand description
A builder for Experiment
.
Implementations§
source§impl Builder
impl Builder
sourcepub fn experiment_name(self, input: impl Into<String>) -> Self
pub fn experiment_name(self, input: impl Into<String>) -> Self
The name of the experiment.
sourcepub fn set_experiment_name(self, input: Option<String>) -> Self
pub fn set_experiment_name(self, input: Option<String>) -> Self
The name of the experiment.
sourcepub fn experiment_arn(self, input: impl Into<String>) -> Self
pub fn experiment_arn(self, input: impl Into<String>) -> Self
The Amazon Resource Name (ARN) of the experiment.
sourcepub fn set_experiment_arn(self, input: Option<String>) -> Self
pub fn set_experiment_arn(self, input: Option<String>) -> Self
The Amazon Resource Name (ARN) of the experiment.
sourcepub fn display_name(self, input: impl Into<String>) -> Self
pub fn display_name(self, input: impl Into<String>) -> Self
The name of the experiment as displayed. If DisplayName
isn't specified, ExperimentName
is displayed.
sourcepub fn set_display_name(self, input: Option<String>) -> Self
pub fn set_display_name(self, input: Option<String>) -> Self
The name of the experiment as displayed. If DisplayName
isn't specified, ExperimentName
is displayed.
sourcepub fn source(self, input: ExperimentSource) -> Self
pub fn source(self, input: ExperimentSource) -> Self
The source of the experiment.
sourcepub fn set_source(self, input: Option<ExperimentSource>) -> Self
pub fn set_source(self, input: Option<ExperimentSource>) -> Self
The source of the experiment.
sourcepub fn description(self, input: impl Into<String>) -> Self
pub fn description(self, input: impl Into<String>) -> Self
The description of the experiment.
sourcepub fn set_description(self, input: Option<String>) -> Self
pub fn set_description(self, input: Option<String>) -> Self
The description of the experiment.
sourcepub fn creation_time(self, input: DateTime) -> Self
pub fn creation_time(self, input: DateTime) -> Self
When the experiment was created.
sourcepub fn set_creation_time(self, input: Option<DateTime>) -> Self
pub fn set_creation_time(self, input: Option<DateTime>) -> Self
When the experiment was created.
sourcepub fn created_by(self, input: UserContext) -> Self
pub fn created_by(self, input: UserContext) -> Self
Who created the experiment.
sourcepub fn set_created_by(self, input: Option<UserContext>) -> Self
pub fn set_created_by(self, input: Option<UserContext>) -> Self
Who created the experiment.
sourcepub fn last_modified_time(self, input: DateTime) -> Self
pub fn last_modified_time(self, input: DateTime) -> Self
When the experiment was last modified.
sourcepub fn set_last_modified_time(self, input: Option<DateTime>) -> Self
pub fn set_last_modified_time(self, input: Option<DateTime>) -> Self
When the experiment was last modified.
sourcepub fn last_modified_by(self, input: UserContext) -> Self
pub fn last_modified_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_last_modified_by(self, input: Option<UserContext>) -> Self
pub fn set_last_modified_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.
Appends an item to tags
.
To override the contents of this collection use set_tags
.
The list of tags that are associated with the experiment. You can use Search
API to search on the tags.
The list of tags that are associated with the experiment. You can use Search
API to search on the tags.
sourcepub fn build(self) -> Experiment
pub fn build(self) -> Experiment
Consumes the builder and constructs a Experiment
.