Struct aws_sdk_sagemaker::types::Experiment
source · #[non_exhaustive]pub struct Experiment { /* private fields */ }
Expand description
The properties of an experiment as returned by the Search API.
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.
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
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 Experiment
impl Debug for Experiment
source§impl PartialEq<Experiment> for Experiment
impl PartialEq<Experiment> for Experiment
source§fn eq(&self, other: &Experiment) -> bool
fn eq(&self, other: &Experiment) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.impl StructuralPartialEq for Experiment
Auto Trait Implementations§
impl RefUnwindSafe for Experiment
impl Send for Experiment
impl Sync for Experiment
impl Unpin for Experiment
impl UnwindSafe for Experiment
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
Mutably borrows from an owned value. Read more