Struct aws_sdk_sagemaker::model::Experiment
source · [−]#[non_exhaustive]pub struct Experiment { /* private fields */ }Expand description
The properties of an experiment as returned by the Search API.
Implementations
sourceimpl 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, or project.
The list of tags that are associated with the experiment. You can use Search API to search on the tags.
sourceimpl Experiment
impl Experiment
sourcepub fn builder() -> Builder
pub fn builder() -> Builder
Creates a new builder-style object to manufacture Experiment.
Trait Implementations
sourceimpl Clone for Experiment
impl Clone for Experiment
sourcefn clone(&self) -> Experiment
fn clone(&self) -> Experiment
Returns a copy of the value. Read more
1.0.0 · sourcefn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moresourceimpl Debug for Experiment
impl Debug for Experiment
sourceimpl PartialEq<Experiment> for Experiment
impl PartialEq<Experiment> for Experiment
sourcefn eq(&self, other: &Experiment) -> bool
fn eq(&self, other: &Experiment) -> bool
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
sourceimpl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more