Struct aws_sdk_sagemaker::output::DescribeModelCardOutput
source · #[non_exhaustive]pub struct DescribeModelCardOutput { /* private fields */ }
Implementations§
source§impl DescribeModelCardOutput
impl DescribeModelCardOutput
sourcepub fn model_card_arn(&self) -> Option<&str>
pub fn model_card_arn(&self) -> Option<&str>
The Amazon Resource Name (ARN) of the model card.
sourcepub fn model_card_name(&self) -> Option<&str>
pub fn model_card_name(&self) -> Option<&str>
The name of the model card.
sourcepub fn model_card_version(&self) -> i32
pub fn model_card_version(&self) -> i32
The version of the model card.
sourcepub fn model_card_status(&self) -> Option<&ModelCardStatus>
pub fn model_card_status(&self) -> Option<&ModelCardStatus>
The approval status of the model card within your organization. Different organizations might have different criteria for model card review and approval.
-
Draft
: The model card is a work in progress. -
PendingReview
: The model card is pending review. -
Approved
: The model card is approved. -
Archived
: The model card is archived. No more updates should be made to the model card, but it can still be exported.
sourcepub fn security_config(&self) -> Option<&ModelCardSecurityConfig>
pub fn security_config(&self) -> Option<&ModelCardSecurityConfig>
The security configuration used to protect model card content.
sourcepub fn creation_time(&self) -> Option<&DateTime>
pub fn creation_time(&self) -> Option<&DateTime>
The date and time the model card 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>
The date and time the model card 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 model_card_processing_status(&self) -> Option<&ModelCardProcessingStatus>
pub fn model_card_processing_status(&self) -> Option<&ModelCardProcessingStatus>
The processing status of model card deletion. The ModelCardProcessingStatus
updates throughout the different deletion steps.
-
DeletePending
: Model card deletion request received. -
DeleteInProgress
: Model card deletion is in progress. -
ContentDeleted
: Deleted model card content. -
ExportJobsDeleted
: Deleted all export jobs associated with the model card. -
DeleteCompleted
: Successfully deleted the model card. -
DeleteFailed
: The model card failed to delete.
source§impl DescribeModelCardOutput
impl DescribeModelCardOutput
sourcepub fn builder() -> Builder
pub fn builder() -> Builder
Creates a new builder-style object to manufacture DescribeModelCardOutput
.
Trait Implementations§
source§impl Clone for DescribeModelCardOutput
impl Clone for DescribeModelCardOutput
source§fn clone(&self) -> DescribeModelCardOutput
fn clone(&self) -> DescribeModelCardOutput
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read moresource§impl Debug for DescribeModelCardOutput
impl Debug for DescribeModelCardOutput
source§impl PartialEq<DescribeModelCardOutput> for DescribeModelCardOutput
impl PartialEq<DescribeModelCardOutput> for DescribeModelCardOutput
source§fn eq(&self, other: &DescribeModelCardOutput) -> bool
fn eq(&self, other: &DescribeModelCardOutput) -> bool
self
and other
values to be equal, and is used
by ==
.