#[non_exhaustive]pub struct DescribeExperimentOutput { /* private fields */ }
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
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 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
This method tests for
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>
Returns the request ID, or
None
if the service could not be reached.impl StructuralPartialEq for DescribeExperimentOutput
Auto Trait Implementations§
impl RefUnwindSafe for DescribeExperimentOutput
impl Send for DescribeExperimentOutput
impl Sync for DescribeExperimentOutput
impl Unpin for DescribeExperimentOutput
impl UnwindSafe for DescribeExperimentOutput
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