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 ==
.impl StructuralPartialEq for Experiment
Auto Trait Implementations§
impl Freeze for Experiment
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
source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
source§default unsafe fn clone_to_uninit(&self, dst: *mut T)
default unsafe fn clone_to_uninit(&self, dst: *mut T)
clone_to_uninit
)source§impl<T> Instrument for T
impl<T> Instrument for T
source§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
source§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
source§impl<T> IntoEither for T
impl<T> IntoEither for T
source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
self
into a Left
variant of Either<Self, Self>
if into_left
is true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read moresource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
self
into a Left
variant of Either<Self, Self>
if into_left(&self)
returns true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read more