Struct aws_sdk_sagemaker::model::ModelDashboardModelCard
source · #[non_exhaustive]pub struct ModelDashboardModelCard { /* private fields */ }
Expand description
The model card for a model displayed in the Amazon SageMaker Model Dashboard.
Implementations§
source§impl ModelDashboardModelCard
impl ModelDashboardModelCard
sourcepub fn model_card_arn(&self) -> Option<&str>
pub fn model_card_arn(&self) -> Option<&str>
The Amazon Resource Name (ARN) for a model card.
sourcepub fn model_card_name(&self) -> Option<&str>
pub fn model_card_name(&self) -> Option<&str>
The name of a model card.
sourcepub fn model_card_version(&self) -> i32
pub fn model_card_version(&self) -> i32
The model card version.
sourcepub fn model_card_status(&self) -> Option<&ModelCardStatus>
pub fn model_card_status(&self) -> Option<&ModelCardStatus>
The model card status.
sourcepub fn security_config(&self) -> Option<&ModelCardSecurityConfig>
pub fn security_config(&self) -> Option<&ModelCardSecurityConfig>
The KMS Key ID (KMSKeyId
) for encryption of model card information.
sourcepub fn creation_time(&self) -> Option<&DateTime>
pub fn creation_time(&self) -> Option<&DateTime>
A timestamp that indicates when 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>
A timestamp that indicates when the model card was last updated.
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.
The tags associated with a model card.
sourcepub fn model_id(&self) -> Option<&str>
pub fn model_id(&self) -> Option<&str>
For models created in SageMaker, this is the model ARN. For models created outside of SageMaker, this is a user-customized string.
sourcepub fn risk_rating(&self) -> Option<&str>
pub fn risk_rating(&self) -> Option<&str>
A model card's risk rating. Can be low, medium, or high.
source§impl ModelDashboardModelCard
impl ModelDashboardModelCard
sourcepub fn builder() -> Builder
pub fn builder() -> Builder
Creates a new builder-style object to manufacture ModelDashboardModelCard
.
Trait Implementations§
source§impl Clone for ModelDashboardModelCard
impl Clone for ModelDashboardModelCard
source§fn clone(&self) -> ModelDashboardModelCard
fn clone(&self) -> ModelDashboardModelCard
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read moresource§impl Debug for ModelDashboardModelCard
impl Debug for ModelDashboardModelCard
source§impl PartialEq<ModelDashboardModelCard> for ModelDashboardModelCard
impl PartialEq<ModelDashboardModelCard> for ModelDashboardModelCard
source§fn eq(&self, other: &ModelDashboardModelCard) -> bool
fn eq(&self, other: &ModelDashboardModelCard) -> bool
self
and other
values to be equal, and is used
by ==
.