Struct aws_sdk_sagemaker::input::create_experiment_input::Builder
source · pub struct Builder { /* private fields */ }
Expand description
A builder for CreateExperimentInput
.
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. The name must be unique in your Amazon Web Services account and is not case-sensitive.
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. The name must be unique in your Amazon Web Services account and is not case-sensitive.
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. The name doesn't need to be unique. If you don't specify DisplayName
, the value in 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. The name doesn't need to be unique. If you don't specify DisplayName
, the value in ExperimentName
is displayed.
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.
Appends an item to tags
.
To override the contents of this collection use set_tags
.
A list of tags to associate with the experiment. You can use Search
API to search on the tags.
A list of tags to associate with the experiment. You can use Search
API to search on the tags.
sourcepub fn build(self) -> Result<CreateExperimentInput, BuildError>
pub fn build(self) -> Result<CreateExperimentInput, BuildError>
Consumes the builder and constructs a CreateExperimentInput
.