Struct aws_sdk_sagemaker::types::builders::ExperimentBuilder
source · #[non_exhaustive]pub struct ExperimentBuilder { /* private fields */ }
Expand description
A builder for Experiment
.
Implementations§
source§impl ExperimentBuilder
impl ExperimentBuilder
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
.
Trait Implementations§
source§impl Clone for ExperimentBuilder
impl Clone for ExperimentBuilder
source§fn clone(&self) -> ExperimentBuilder
fn clone(&self) -> ExperimentBuilder
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read moresource§impl Debug for ExperimentBuilder
impl Debug for ExperimentBuilder
source§impl Default for ExperimentBuilder
impl Default for ExperimentBuilder
source§fn default() -> ExperimentBuilder
fn default() -> ExperimentBuilder
source§impl PartialEq<ExperimentBuilder> for ExperimentBuilder
impl PartialEq<ExperimentBuilder> for ExperimentBuilder
source§fn eq(&self, other: &ExperimentBuilder) -> bool
fn eq(&self, other: &ExperimentBuilder) -> bool
self
and other
values to be equal, and is used
by ==
.