#[non_exhaustive]pub struct DescribeExperimentOutput {
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>,
/* private fields */
}
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 Amazon Resource Name (ARN) of the source and, optionally, the type.
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>
Who last modified the experiment.
Implementations§
source§impl DescribeExperimentOutput
impl DescribeExperimentOutput
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 Amazon Resource Name (ARN) of the source and, optionally, the type.
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>
Who last modified the experiment.
source§impl DescribeExperimentOutput
impl DescribeExperimentOutput
sourcepub fn builder() -> DescribeExperimentOutputBuilder
pub fn builder() -> DescribeExperimentOutputBuilder
Creates a new builder-style object to manufacture DescribeExperimentOutput
.
Trait Implementations§
source§impl Clone for DescribeExperimentOutput
impl Clone for DescribeExperimentOutput
source§fn clone(&self) -> DescribeExperimentOutput
fn clone(&self) -> DescribeExperimentOutput
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read moresource§impl Debug for DescribeExperimentOutput
impl Debug for DescribeExperimentOutput
source§impl PartialEq<DescribeExperimentOutput> for DescribeExperimentOutput
impl PartialEq<DescribeExperimentOutput> for DescribeExperimentOutput
source§fn eq(&self, other: &DescribeExperimentOutput) -> bool
fn eq(&self, other: &DescribeExperimentOutput) -> bool
self
and other
values to be equal, and is used
by ==
.source§impl RequestId for DescribeExperimentOutput
impl RequestId for DescribeExperimentOutput
source§fn request_id(&self) -> Option<&str>
fn request_id(&self) -> Option<&str>
None
if the service could not be reached.