#[non_exhaustive]pub struct DescribeModelCardExportJobOutput { /* private fields */ }
Implementations§
source§impl DescribeModelCardExportJobOutput
impl DescribeModelCardExportJobOutput
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 to describe.
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.
-
InProgress
: The model card export job is in progress. -
Completed
: The model card export job is complete. -
Failed
: The model card export job failed. To see the reason for the failure, see theFailureReason
field in the response to aDescribeModelCardExportJob
call.
sourcepub fn model_card_name(&self) -> Option<&str>
pub fn model_card_name(&self) -> Option<&str>
The name of the model card that the model export job exports.
sourcepub fn model_card_version(&self) -> i32
pub fn model_card_version(&self) -> i32
The version of the model card that the model export job exports.
sourcepub fn output_config(&self) -> Option<&ModelCardExportOutputConfig>
pub fn output_config(&self) -> Option<&ModelCardExportOutputConfig>
The export output details for the model card.
sourcepub fn created_at(&self) -> Option<&DateTime>
pub fn created_at(&self) -> Option<&DateTime>
The date and time that the model 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 export job was last modified.
sourcepub fn failure_reason(&self) -> Option<&str>
pub fn failure_reason(&self) -> Option<&str>
The failure reason if the model export job fails.
sourcepub fn export_artifacts(&self) -> Option<&ModelCardExportArtifacts>
pub fn export_artifacts(&self) -> Option<&ModelCardExportArtifacts>
The exported model card artifacts.
source§impl DescribeModelCardExportJobOutput
impl DescribeModelCardExportJobOutput
sourcepub fn builder() -> Builder
pub fn builder() -> Builder
Creates a new builder-style object to manufacture DescribeModelCardExportJobOutput
.
Trait Implementations§
source§impl Clone for DescribeModelCardExportJobOutput
impl Clone for DescribeModelCardExportJobOutput
source§fn clone(&self) -> DescribeModelCardExportJobOutput
fn clone(&self) -> DescribeModelCardExportJobOutput
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read moresource§impl PartialEq<DescribeModelCardExportJobOutput> for DescribeModelCardExportJobOutput
impl PartialEq<DescribeModelCardExportJobOutput> for DescribeModelCardExportJobOutput
source§fn eq(&self, other: &DescribeModelCardExportJobOutput) -> bool
fn eq(&self, other: &DescribeModelCardExportJobOutput) -> bool
self
and other
values to be equal, and is used
by ==
.