Struct aws_sdk_sagemaker::input::CreateModelCardInput
source · #[non_exhaustive]pub struct CreateModelCardInput { /* private fields */ }
Implementations§
source§impl CreateModelCardInput
impl CreateModelCardInput
sourcepub async fn make_operation(
&self,
_config: &Config
) -> Result<Operation<CreateModelCard, AwsResponseRetryClassifier>, BuildError>
pub async fn make_operation(
&self,
_config: &Config
) -> Result<Operation<CreateModelCard, AwsResponseRetryClassifier>, BuildError>
Consumes the builder and constructs an Operation<CreateModelCard
>
sourcepub fn builder() -> Builder
pub fn builder() -> Builder
Creates a new builder-style object to manufacture CreateModelCardInput
.
source§impl CreateModelCardInput
impl CreateModelCardInput
sourcepub fn model_card_name(&self) -> Option<&str>
pub fn model_card_name(&self) -> Option<&str>
The unique name of the model card.
sourcepub fn security_config(&self) -> Option<&ModelCardSecurityConfig>
pub fn security_config(&self) -> Option<&ModelCardSecurityConfig>
An optional Key Management Service key to encrypt, decrypt, and re-encrypt model card content for regulated workloads with highly sensitive data.
sourcepub fn content(&self) -> Option<&str>
pub fn content(&self) -> Option<&str>
The content of the model card. Content must be in model card JSON schema and provided as a string.
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.
Key-value pairs used to manage metadata for model cards.
Trait Implementations§
source§impl Clone for CreateModelCardInput
impl Clone for CreateModelCardInput
source§fn clone(&self) -> CreateModelCardInput
fn clone(&self) -> CreateModelCardInput
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read moresource§impl Debug for CreateModelCardInput
impl Debug for CreateModelCardInput
source§impl PartialEq<CreateModelCardInput> for CreateModelCardInput
impl PartialEq<CreateModelCardInput> for CreateModelCardInput
source§fn eq(&self, other: &CreateModelCardInput) -> bool
fn eq(&self, other: &CreateModelCardInput) -> bool
self
and other
values to be equal, and is used
by ==
.