#[non_exhaustive]pub struct DescribeContextOutput {
pub context_name: Option<String>,
pub context_arn: Option<String>,
pub source: Option<ContextSource>,
pub context_type: Option<String>,
pub description: Option<String>,
pub properties: Option<HashMap<String, String>>,
pub creation_time: Option<DateTime>,
pub created_by: Option<UserContext>,
pub last_modified_time: Option<DateTime>,
pub last_modified_by: Option<UserContext>,
pub lineage_group_arn: Option<String>,
/* 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.context_name: Option<String>
The name of the context.
context_arn: Option<String>
The Amazon Resource Name (ARN) of the context.
source: Option<ContextSource>
The source of the context.
context_type: Option<String>
The type of the context.
description: Option<String>
The description of the context.
properties: Option<HashMap<String, String>>
A list of the context's properties.
creation_time: Option<DateTime>
When the context was created.
created_by: Option<UserContext>
Information about the user who created or modified an experiment, trial, trial component, lineage group, project, or model card.
last_modified_time: Option<DateTime>
When the context 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.
lineage_group_arn: Option<String>
The Amazon Resource Name (ARN) of the lineage group.
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
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read moresource§impl Debug for DescribeContextOutput
impl Debug for DescribeContextOutput
source§impl PartialEq for DescribeContextOutput
impl PartialEq for DescribeContextOutput
source§fn eq(&self, other: &DescribeContextOutput) -> bool
fn eq(&self, other: &DescribeContextOutput) -> bool
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>
None
if the service could not be reached.