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<ExperimentConfig> for ExperimentConfig
impl PartialEq<ExperimentConfig> for ExperimentConfig
source§fn eq(&self, other: &ExperimentConfig) -> bool
fn eq(&self, other: &ExperimentConfig) -> bool
self
and other
values to be equal, and is used
by ==
.