Struct aws_sdk_sagemaker::types::ExperimentConfig
source · #[non_exhaustive]pub struct ExperimentConfig { /* private fields */ }
Expand description
Associates a SageMaker job as a trial component with an experiment and trial. Specified when you call the following APIs:
-
CreateProcessingJob
-
CreateTrainingJob
-
CreateTransformJob
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
Returns a copy of the value. Read more
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
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
This method tests for
self
and other
values to be equal, and is used
by ==
.