Struct aws_sdk_sagemaker::types::Experiment
source · #[non_exhaustive]pub struct Experiment {
pub experiment_name: Option<String>,
pub experiment_arn: Option<String>,
pub display_name: Option<String>,
pub source: Option<ExperimentSource>,
pub description: Option<String>,
pub creation_time: Option<DateTime>,
pub created_by: Option<UserContext>,
pub last_modified_time: Option<DateTime>,
pub last_modified_by: Option<UserContext>,
pub tags: Option<Vec<Tag>>,
}
Expand description
The properties of an experiment as returned by the Search API.
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 the experiment.
experiment_arn: Option<String>
The Amazon Resource Name (ARN) of the experiment.
display_name: Option<String>
The name of the experiment as displayed. If DisplayName
isn't specified, ExperimentName
is displayed.
source: Option<ExperimentSource>
The source of the experiment.
description: Option<String>
The description of the experiment.
creation_time: Option<DateTime>
When the experiment was created.
created_by: Option<UserContext>
Who created the experiment.
last_modified_time: Option<DateTime>
When the experiment was last modified.
last_modified_by: Option<UserContext>
Information about the user who created or modified an experiment, trial, trial component, lineage group, project, or model card.
The list of tags that are associated with the experiment. You can use Search API to search on the tags.
Implementations§
source§impl Experiment
impl Experiment
sourcepub fn experiment_name(&self) -> Option<&str>
pub fn experiment_name(&self) -> Option<&str>
The name of the experiment.
sourcepub fn experiment_arn(&self) -> Option<&str>
pub fn experiment_arn(&self) -> Option<&str>
The Amazon Resource Name (ARN) of the experiment.
sourcepub fn display_name(&self) -> Option<&str>
pub fn display_name(&self) -> Option<&str>
The name of the experiment as displayed. If DisplayName
isn't specified, ExperimentName
is displayed.
sourcepub fn source(&self) -> Option<&ExperimentSource>
pub fn source(&self) -> Option<&ExperimentSource>
The source of the experiment.
sourcepub fn description(&self) -> Option<&str>
pub fn description(&self) -> Option<&str>
The description of the experiment.
sourcepub fn creation_time(&self) -> Option<&DateTime>
pub fn creation_time(&self) -> Option<&DateTime>
When the experiment was created.
sourcepub fn created_by(&self) -> Option<&UserContext>
pub fn created_by(&self) -> Option<&UserContext>
Who created the experiment.
sourcepub fn last_modified_time(&self) -> Option<&DateTime>
pub fn last_modified_time(&self) -> Option<&DateTime>
When the experiment was last modified.
sourcepub fn last_modified_by(&self) -> Option<&UserContext>
pub fn last_modified_by(&self) -> Option<&UserContext>
Information about the user who created or modified an experiment, trial, trial component, lineage group, project, or model card.
The list of tags that are associated with the experiment. You can use Search API to search on the tags.
If no value was sent for this field, a default will be set. If you want to determine if no value was sent, use .tags.is_none()
.
source§impl Experiment
impl Experiment
sourcepub fn builder() -> ExperimentBuilder
pub fn builder() -> ExperimentBuilder
Creates a new builder-style object to manufacture Experiment
.
Trait Implementations§
source§impl Clone for Experiment
impl Clone for Experiment
source§fn clone(&self) -> Experiment
fn clone(&self) -> Experiment
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read moresource§impl Debug for Experiment
impl Debug for Experiment
source§impl PartialEq for Experiment
impl PartialEq for Experiment
source§fn eq(&self, other: &Experiment) -> bool
fn eq(&self, other: &Experiment) -> bool
self
and other
values to be equal, and is used
by ==
.