Struct aws_sdk_sagemaker::types::ModelDashboardModelCard
source · #[non_exhaustive]pub struct ModelDashboardModelCard {
pub model_card_arn: Option<String>,
pub model_card_name: Option<String>,
pub model_card_version: i32,
pub model_card_status: Option<ModelCardStatus>,
pub security_config: Option<ModelCardSecurityConfig>,
pub creation_time: Option<DateTime>,
pub created_by: Option<UserContext>,
pub last_modified_time: Option<DateTime>,
pub last_modified_by: Option<UserContext>,
pub tags: Option<Vec<Tag>>,
pub model_id: Option<String>,
pub risk_rating: Option<String>,
}
Expand description
The model card for a model displayed in the Amazon SageMaker Model Dashboard.
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.model_card_arn: Option<String>
The Amazon Resource Name (ARN) for a model card.
model_card_name: Option<String>
The name of a model card.
model_card_version: i32
The model card version.
model_card_status: Option<ModelCardStatus>
The model card status.
security_config: Option<ModelCardSecurityConfig>
The KMS Key ID (KMSKeyId
) for encryption of model card information.
creation_time: Option<DateTime>
A timestamp that indicates when the model card 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>
A timestamp that indicates when the model card was last updated.
last_modified_by: 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.
model_id: Option<String>
For models created in SageMaker, this is the model ARN. For models created outside of SageMaker, this is a user-customized string.
risk_rating: Option<String>
A model card's risk rating. Can be low, medium, or high.
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() -> ModelDashboardModelCardBuilder
pub fn builder() -> ModelDashboardModelCardBuilder
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 ==
.