#[non_exhaustive]pub struct DescribeArtifactOutput {
pub artifact_name: Option<String>,
pub artifact_arn: Option<String>,
pub source: Option<ArtifactSource>,
pub artifact_type: 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 metadata_properties: Option<MetadataProperties>,
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.artifact_name: Option<String>
The name of the artifact.
artifact_arn: Option<String>
The Amazon Resource Name (ARN) of the artifact.
source: Option<ArtifactSource>
The source of the artifact.
artifact_type: Option<String>
The type of the artifact.
properties: Option<HashMap<String, String>>
A list of the artifact's properties.
creation_time: Option<DateTime>
When the artifact 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 artifact 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.
metadata_properties: Option<MetadataProperties>
Metadata properties of the tracking entity, trial, or trial component.
lineage_group_arn: Option<String>
The Amazon Resource Name (ARN) of the lineage group.
Implementations§
source§impl DescribeArtifactOutput
impl DescribeArtifactOutput
sourcepub fn artifact_name(&self) -> Option<&str>
pub fn artifact_name(&self) -> Option<&str>
The name of the artifact.
sourcepub fn artifact_arn(&self) -> Option<&str>
pub fn artifact_arn(&self) -> Option<&str>
The Amazon Resource Name (ARN) of the artifact.
sourcepub fn source(&self) -> Option<&ArtifactSource>
pub fn source(&self) -> Option<&ArtifactSource>
The source of the artifact.
sourcepub fn artifact_type(&self) -> Option<&str>
pub fn artifact_type(&self) -> Option<&str>
The type of the artifact.
sourcepub fn properties(&self) -> Option<&HashMap<String, String>>
pub fn properties(&self) -> Option<&HashMap<String, String>>
A list of the artifact's properties.
sourcepub fn creation_time(&self) -> Option<&DateTime>
pub fn creation_time(&self) -> Option<&DateTime>
When the artifact 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 artifact 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 metadata_properties(&self) -> Option<&MetadataProperties>
pub fn metadata_properties(&self) -> Option<&MetadataProperties>
Metadata properties of the tracking entity, trial, or trial component.
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 DescribeArtifactOutput
impl DescribeArtifactOutput
sourcepub fn builder() -> DescribeArtifactOutputBuilder
pub fn builder() -> DescribeArtifactOutputBuilder
Creates a new builder-style object to manufacture DescribeArtifactOutput
.
Trait Implementations§
source§impl Clone for DescribeArtifactOutput
impl Clone for DescribeArtifactOutput
source§fn clone(&self) -> DescribeArtifactOutput
fn clone(&self) -> DescribeArtifactOutput
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read moresource§impl Debug for DescribeArtifactOutput
impl Debug for DescribeArtifactOutput
source§impl PartialEq for DescribeArtifactOutput
impl PartialEq for DescribeArtifactOutput
source§fn eq(&self, other: &DescribeArtifactOutput) -> bool
fn eq(&self, other: &DescribeArtifactOutput) -> bool
self
and other
values to be equal, and is used
by ==
.source§impl RequestId for DescribeArtifactOutput
impl RequestId for DescribeArtifactOutput
source§fn request_id(&self) -> Option<&str>
fn request_id(&self) -> Option<&str>
None
if the service could not be reached.impl StructuralPartialEq for DescribeArtifactOutput
Auto Trait Implementations§
impl Freeze for DescribeArtifactOutput
impl RefUnwindSafe for DescribeArtifactOutput
impl Send for DescribeArtifactOutput
impl Sync for DescribeArtifactOutput
impl Unpin for DescribeArtifactOutput
impl UnwindSafe for DescribeArtifactOutput
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> 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