Struct aws_sdk_sagemaker::types::ExperimentConfig
source · #[non_exhaustive]pub struct ExperimentConfig {
pub experiment_name: Option<String>,
pub trial_name: Option<String>,
pub trial_component_display_name: Option<String>,
pub run_name: Option<String>,
}
Expand description
Associates a SageMaker job as a trial component with an experiment and trial. Specified when you call the following APIs:
Fields (Non-exhaustive)§
This struct is marked as non-exhaustive
Struct { .. }
syntax; cannot be matched against without a wildcard ..
; and struct update syntax will not work.experiment_name: Option<String>
The name of an existing experiment to associate with the trial component.
trial_name: Option<String>
The name of an existing trial to associate the trial component with. If not specified, a new trial is created.
trial_component_display_name: Option<String>
The display name for the trial component. If this key isn't specified, the display name is the trial component name.
run_name: Option<String>
The name of the experiment run to associate with the trial component.
Implementations§
source§impl ExperimentConfig
impl ExperimentConfig
sourcepub fn experiment_name(&self) -> Option<&str>
pub fn experiment_name(&self) -> Option<&str>
The name of an existing experiment to associate with the trial component.
sourcepub fn trial_name(&self) -> Option<&str>
pub fn trial_name(&self) -> Option<&str>
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) -> Option<&str>
pub fn trial_component_display_name(&self) -> Option<&str>
The display name for the trial component. If this key isn't specified, the display name is the trial component name.
source§impl ExperimentConfig
impl ExperimentConfig
sourcepub fn builder() -> ExperimentConfigBuilder
pub fn builder() -> ExperimentConfigBuilder
Creates a new builder-style object to manufacture ExperimentConfig
.
Trait Implementations§
source§impl Clone for ExperimentConfig
impl Clone for ExperimentConfig
source§fn clone(&self) -> ExperimentConfig
fn clone(&self) -> ExperimentConfig
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read moresource§impl Debug for ExperimentConfig
impl Debug for ExperimentConfig
source§impl PartialEq for ExperimentConfig
impl PartialEq for ExperimentConfig
impl StructuralPartialEq for ExperimentConfig
Auto Trait Implementations§
impl Freeze for ExperimentConfig
impl RefUnwindSafe for ExperimentConfig
impl Send for ExperimentConfig
impl Sync for ExperimentConfig
impl Unpin for ExperimentConfig
impl UnwindSafe for ExperimentConfig
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