Struct aws_sdk_sagemaker::input::update_experiment_input::Builder
source · pub struct Builder { /* private fields */ }
Expand description
A builder for UpdateExperimentInput
.
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 to update.
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 to update.
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 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. The name doesn't need to be unique. If DisplayName
isn't specified, 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.
sourcepub fn build(self) -> Result<UpdateExperimentInput, BuildError>
pub fn build(self) -> Result<UpdateExperimentInput, BuildError>
Consumes the builder and constructs a UpdateExperimentInput
.