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 ==
.impl StructuralPartialEq for ExperimentConfigBuilder
Auto Trait Implementations§
impl Freeze for ExperimentConfigBuilder
impl RefUnwindSafe for ExperimentConfigBuilder
impl Send for ExperimentConfigBuilder
impl Sync for ExperimentConfigBuilder
impl Unpin for ExperimentConfigBuilder
impl UnwindSafe for ExperimentConfigBuilder
Blanket Implementations§
source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
source§default unsafe fn clone_to_uninit(&self, dst: *mut T)
default unsafe fn clone_to_uninit(&self, dst: *mut T)
clone_to_uninit
)source§impl<T> Instrument for T
impl<T> Instrument for T
source§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
source§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
source§impl<T> IntoEither for T
impl<T> IntoEither for T
source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
self
into a Left
variant of Either<Self, Self>
if into_left
is true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read moresource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
self
into a Left
variant of Either<Self, Self>
if into_left(&self)
returns true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read more