Struct aws_sdk_sagemaker::types::builders::ExperimentConfigBuilder
source · #[non_exhaustive]pub struct ExperimentConfigBuilder { /* private fields */ }
Expand description
A builder for ExperimentConfig
.
Implementations§
source§impl ExperimentConfigBuilder
impl ExperimentConfigBuilder
sourcepub fn experiment_name(self, input: impl Into<String>) -> Self
pub fn experiment_name(self, input: impl Into<String>) -> Self
The name of an existing experiment to associate with the trial component.
sourcepub fn set_experiment_name(self, input: Option<String>) -> Self
pub fn set_experiment_name(self, input: Option<String>) -> Self
The name of an existing experiment to associate with the trial component.
sourcepub fn get_experiment_name(&self) -> &Option<String>
pub fn get_experiment_name(&self) -> &Option<String>
The name of an existing experiment to associate with the trial component.
sourcepub fn trial_name(self, input: impl Into<String>) -> Self
pub fn trial_name(self, input: impl Into<String>) -> Self
The name of an existing trial to associate the trial component with. If not specified, a new trial is created.
sourcepub fn set_trial_name(self, input: Option<String>) -> Self
pub fn set_trial_name(self, input: Option<String>) -> Self
The name of an existing trial to associate the trial component with. If not specified, a new trial is created.
sourcepub fn get_trial_name(&self) -> &Option<String>
pub fn get_trial_name(&self) -> &Option<String>
The name of an existing trial to associate the trial component with. If not specified, a new trial is created.
sourcepub fn trial_component_display_name(self, input: impl Into<String>) -> Self
pub fn trial_component_display_name(self, input: impl Into<String>) -> Self
The display name for the trial component. If this key isn't specified, the display name is the trial component name.
sourcepub fn set_trial_component_display_name(self, input: Option<String>) -> Self
pub fn set_trial_component_display_name(self, input: Option<String>) -> Self
The display name for the trial component. If this key isn't specified, the display name is the trial component name.
sourcepub fn get_trial_component_display_name(&self) -> &Option<String>
pub fn get_trial_component_display_name(&self) -> &Option<String>
The display name for the trial component. If this key isn't specified, the display name is the trial component name.
sourcepub fn run_name(self, input: impl Into<String>) -> Self
pub fn run_name(self, input: impl Into<String>) -> Self
The name of the experiment run to associate with the trial component.
sourcepub fn set_run_name(self, input: Option<String>) -> Self
pub fn set_run_name(self, input: Option<String>) -> Self
The name of the experiment run to associate with the trial component.
sourcepub fn get_run_name(&self) -> &Option<String>
pub fn get_run_name(&self) -> &Option<String>
The name of the experiment run to associate with the trial component.
sourcepub fn build(self) -> ExperimentConfig
pub fn build(self) -> ExperimentConfig
Consumes the builder and constructs a ExperimentConfig
.
Trait Implementations§
source§impl Clone for ExperimentConfigBuilder
impl Clone for ExperimentConfigBuilder
source§fn clone(&self) -> ExperimentConfigBuilder
fn clone(&self) -> ExperimentConfigBuilder
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read moresource§impl Debug for ExperimentConfigBuilder
impl Debug for ExperimentConfigBuilder
source§impl Default for ExperimentConfigBuilder
impl Default for ExperimentConfigBuilder
source§fn default() -> ExperimentConfigBuilder
fn default() -> ExperimentConfigBuilder
source§impl PartialEq for ExperimentConfigBuilder
impl PartialEq for ExperimentConfigBuilder
source§fn eq(&self, other: &ExperimentConfigBuilder) -> bool
fn eq(&self, other: &ExperimentConfigBuilder) -> bool
self
and other
values to be equal, and is used
by ==
.