#[non_exhaustive]pub struct ModelCardExportJobSummary {
    pub model_card_export_job_name: Option<String>,
    pub model_card_export_job_arn: Option<String>,
    pub status: Option<ModelCardExportJobStatus>,
    pub model_card_name: Option<String>,
    pub model_card_version: Option<i32>,
    pub created_at: Option<DateTime>,
    pub last_modified_at: Option<DateTime>,
}Expand description
The summary of the Amazon SageMaker Model Card export job.
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_export_job_name: Option<String>The name of the model card export job.
model_card_export_job_arn: Option<String>The Amazon Resource Name (ARN) of the model card export job.
status: Option<ModelCardExportJobStatus>The completion status of the model card export job.
model_card_name: Option<String>The name of the model card that the export job exports.
model_card_version: Option<i32>The version of the model card that the export job exports.
created_at: Option<DateTime>The date and time that the model card export job was created.
last_modified_at: Option<DateTime>The date and time that the model card export job was last modified..
Implementations§
source§impl ModelCardExportJobSummary
 
impl ModelCardExportJobSummary
sourcepub fn model_card_export_job_name(&self) -> Option<&str>
 
pub fn model_card_export_job_name(&self) -> Option<&str>
The name of the model card export job.
sourcepub fn model_card_export_job_arn(&self) -> Option<&str>
 
pub fn model_card_export_job_arn(&self) -> Option<&str>
The Amazon Resource Name (ARN) of the model card export job.
sourcepub fn status(&self) -> Option<&ModelCardExportJobStatus>
 
pub fn status(&self) -> Option<&ModelCardExportJobStatus>
The completion status of the model card export job.
sourcepub fn model_card_name(&self) -> Option<&str>
 
pub fn model_card_name(&self) -> Option<&str>
The name of the model card that the export job exports.
sourcepub fn model_card_version(&self) -> Option<i32>
 
pub fn model_card_version(&self) -> Option<i32>
The version of the model card that the export job exports.
sourcepub fn created_at(&self) -> Option<&DateTime>
 
pub fn created_at(&self) -> Option<&DateTime>
The date and time that the model card export job was created.
sourcepub fn last_modified_at(&self) -> Option<&DateTime>
 
pub fn last_modified_at(&self) -> Option<&DateTime>
The date and time that the model card export job was last modified..
source§impl ModelCardExportJobSummary
 
impl ModelCardExportJobSummary
sourcepub fn builder() -> ModelCardExportJobSummaryBuilder
 
pub fn builder() -> ModelCardExportJobSummaryBuilder
Creates a new builder-style object to manufacture ModelCardExportJobSummary.
Trait Implementations§
source§impl Clone for ModelCardExportJobSummary
 
impl Clone for ModelCardExportJobSummary
source§fn clone(&self) -> ModelCardExportJobSummary
 
fn clone(&self) -> ModelCardExportJobSummary
1.0.0 · source§fn clone_from(&mut self, source: &Self)
 
fn clone_from(&mut self, source: &Self)
source. Read moresource§impl Debug for ModelCardExportJobSummary
 
impl Debug for ModelCardExportJobSummary
source§impl PartialEq for ModelCardExportJobSummary
 
impl PartialEq for ModelCardExportJobSummary
source§fn eq(&self, other: &ModelCardExportJobSummary) -> bool
 
fn eq(&self, other: &ModelCardExportJobSummary) -> bool
self and other values to be equal, and is used
by ==.