Struct aws_sdk_sagemaker::types::builders::ModelCardBuilder
source · #[non_exhaustive]pub struct ModelCardBuilder { /* private fields */ }
Expand description
A builder for ModelCard
.
Implementations§
source§impl ModelCardBuilder
impl ModelCardBuilder
sourcepub fn model_card_arn(self, input: impl Into<String>) -> Self
pub fn model_card_arn(self, input: impl Into<String>) -> Self
The Amazon Resource Name (ARN) of the model card.
sourcepub fn set_model_card_arn(self, input: Option<String>) -> Self
pub fn set_model_card_arn(self, input: Option<String>) -> Self
The Amazon Resource Name (ARN) of the model card.
sourcepub fn model_card_name(self, input: impl Into<String>) -> Self
pub fn model_card_name(self, input: impl Into<String>) -> Self
The unique name of the model card.
sourcepub fn set_model_card_name(self, input: Option<String>) -> Self
pub fn set_model_card_name(self, input: Option<String>) -> Self
The unique name of the model card.
sourcepub fn model_card_version(self, input: i32) -> Self
pub fn model_card_version(self, input: i32) -> Self
The version of the model card.
sourcepub fn set_model_card_version(self, input: Option<i32>) -> Self
pub fn set_model_card_version(self, input: Option<i32>) -> Self
The version of the model card.
sourcepub fn content(self, input: impl Into<String>) -> Self
pub fn content(self, input: impl Into<String>) -> Self
The content of the model card. Content uses the model card JSON schema and provided as a string.
sourcepub fn set_content(self, input: Option<String>) -> Self
pub fn set_content(self, input: Option<String>) -> Self
The content of the model card. Content uses the model card JSON schema and provided as a string.
sourcepub fn model_card_status(self, input: ModelCardStatus) -> Self
pub fn model_card_status(self, input: ModelCardStatus) -> Self
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 set_model_card_status(self, input: Option<ModelCardStatus>) -> Self
pub fn set_model_card_status(self, input: Option<ModelCardStatus>) -> Self
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, input: ModelCardSecurityConfig) -> Self
pub fn security_config(self, input: ModelCardSecurityConfig) -> Self
The security configuration used to protect model card data.
sourcepub fn set_security_config(self, input: Option<ModelCardSecurityConfig>) -> Self
pub fn set_security_config(self, input: Option<ModelCardSecurityConfig>) -> Self
The security configuration used to protect model card data.
sourcepub fn creation_time(self, input: DateTime) -> Self
pub fn creation_time(self, input: DateTime) -> Self
The date and time that the model card was created.
sourcepub fn set_creation_time(self, input: Option<DateTime>) -> Self
pub fn set_creation_time(self, input: Option<DateTime>) -> Self
The date and time that the model card was created.
sourcepub fn created_by(self, input: UserContext) -> Self
pub fn created_by(self, input: UserContext) -> Self
Information about the user who created or modified an experiment, trial, trial component, lineage group, project, or model card.
sourcepub fn set_created_by(self, input: Option<UserContext>) -> Self
pub fn set_created_by(self, input: Option<UserContext>) -> Self
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, input: DateTime) -> Self
pub fn last_modified_time(self, input: DateTime) -> Self
The date and time that the model card was last modified.
sourcepub fn set_last_modified_time(self, input: Option<DateTime>) -> Self
pub fn set_last_modified_time(self, input: Option<DateTime>) -> Self
The date and time that the model card was last modified.
sourcepub fn last_modified_by(self, input: UserContext) -> Self
pub fn last_modified_by(self, input: UserContext) -> Self
Information about the user who created or modified an experiment, trial, trial component, lineage group, project, or model card.
sourcepub fn set_last_modified_by(self, input: Option<UserContext>) -> Self
pub fn set_last_modified_by(self, input: Option<UserContext>) -> Self
Information about the user who created or modified an experiment, trial, trial component, lineage group, project, or model card.
Appends an item to tags
.
To override the contents of this collection use set_tags
.
Key-value pairs used to manage metadata for the model card.
Key-value pairs used to manage metadata for the model card.
sourcepub fn set_model_id(self, input: Option<String>) -> Self
pub fn set_model_id(self, input: Option<String>) -> Self
The unique name (ID) of the model.
sourcepub fn risk_rating(self, input: impl Into<String>) -> Self
pub fn risk_rating(self, input: impl Into<String>) -> Self
The risk rating of the model. Different organizations might have different criteria for model card risk ratings. For more information, see Risk ratings.
sourcepub fn set_risk_rating(self, input: Option<String>) -> Self
pub fn set_risk_rating(self, input: Option<String>) -> Self
The risk rating of the model. Different organizations might have different criteria for model card risk ratings. For more information, see Risk ratings.
Trait Implementations§
source§impl Clone for ModelCardBuilder
impl Clone for ModelCardBuilder
source§fn clone(&self) -> ModelCardBuilder
fn clone(&self) -> ModelCardBuilder
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read moresource§impl Debug for ModelCardBuilder
impl Debug for ModelCardBuilder
source§impl Default for ModelCardBuilder
impl Default for ModelCardBuilder
source§fn default() -> ModelCardBuilder
fn default() -> ModelCardBuilder
source§impl PartialEq<ModelCardBuilder> for ModelCardBuilder
impl PartialEq<ModelCardBuilder> for ModelCardBuilder
source§fn eq(&self, other: &ModelCardBuilder) -> bool
fn eq(&self, other: &ModelCardBuilder) -> bool
self
and other
values to be equal, and is used
by ==
.