#[non_exhaustive]pub struct DescribeContextOutput { /* private fields */ }
Implementations§
source§impl DescribeContextOutput
impl DescribeContextOutput
sourcepub fn context_name(&self) -> Option<&str>
pub fn context_name(&self) -> Option<&str>
The name of the context.
sourcepub fn context_arn(&self) -> Option<&str>
pub fn context_arn(&self) -> Option<&str>
The Amazon Resource Name (ARN) of the context.
sourcepub fn source(&self) -> Option<&ContextSource>
pub fn source(&self) -> Option<&ContextSource>
The source of the context.
sourcepub fn context_type(&self) -> Option<&str>
pub fn context_type(&self) -> Option<&str>
The type of the context.
sourcepub fn description(&self) -> Option<&str>
pub fn description(&self) -> Option<&str>
The description of the context.
sourcepub fn properties(&self) -> Option<&HashMap<String, String>>
pub fn properties(&self) -> Option<&HashMap<String, String>>
A list of the context's properties.
sourcepub fn creation_time(&self) -> Option<&DateTime>
pub fn creation_time(&self) -> Option<&DateTime>
When the context was created.
sourcepub fn created_by(&self) -> Option<&UserContext>
pub fn created_by(&self) -> Option<&UserContext>
Information about the user who created or modified an experiment, trial, trial component, lineage group, project, or model card.
sourcepub fn last_modified_time(&self) -> Option<&DateTime>
pub fn last_modified_time(&self) -> Option<&DateTime>
When the context 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.
sourcepub fn lineage_group_arn(&self) -> Option<&str>
pub fn lineage_group_arn(&self) -> Option<&str>
The Amazon Resource Name (ARN) of the lineage group.
source§impl DescribeContextOutput
impl DescribeContextOutput
sourcepub fn builder() -> DescribeContextOutputBuilder
pub fn builder() -> DescribeContextOutputBuilder
Creates a new builder-style object to manufacture DescribeContextOutput
.
Trait Implementations§
source§impl Clone for DescribeContextOutput
impl Clone for DescribeContextOutput
source§fn clone(&self) -> DescribeContextOutput
fn clone(&self) -> DescribeContextOutput
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 DescribeContextOutput
impl Debug for DescribeContextOutput
source§impl PartialEq<DescribeContextOutput> for DescribeContextOutput
impl PartialEq<DescribeContextOutput> for DescribeContextOutput
source§fn eq(&self, other: &DescribeContextOutput) -> bool
fn eq(&self, other: &DescribeContextOutput) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.source§impl RequestId for DescribeContextOutput
impl RequestId for DescribeContextOutput
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 DescribeContextOutput
Auto Trait Implementations§
impl RefUnwindSafe for DescribeContextOutput
impl Send for DescribeContextOutput
impl Sync for DescribeContextOutput
impl Unpin for DescribeContextOutput
impl UnwindSafe for DescribeContextOutput
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