#[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 ==
.impl StructuralPartialEq for ModelCardExportJobSummary
Auto Trait Implementations§
impl Freeze for ModelCardExportJobSummary
impl RefUnwindSafe for ModelCardExportJobSummary
impl Send for ModelCardExportJobSummary
impl Sync for ModelCardExportJobSummary
impl Unpin for ModelCardExportJobSummary
impl UnwindSafe for ModelCardExportJobSummary
Blanket Implementations§
source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
source§default unsafe fn clone_to_uninit(&self, dst: *mut T)
default unsafe fn clone_to_uninit(&self, dst: *mut T)
clone_to_uninit
)source§impl<T> Instrument for T
impl<T> Instrument for T
source§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
source§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
source§impl<T> IntoEither for T
impl<T> IntoEither for T
source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
self
into a Left
variant of Either<Self, Self>
if into_left
is true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read moresource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
self
into a Left
variant of Either<Self, Self>
if into_left(&self)
returns true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read more