Struct aws_sdk_sagemaker::model::TransformJobSummary
source · #[non_exhaustive]pub struct TransformJobSummary { /* private fields */ }
Expand description
Provides a summary of a transform job. Multiple TransformJobSummary
objects are returned as a list after in response to a ListTransformJobs
call.
Implementations§
source§impl TransformJobSummary
impl TransformJobSummary
sourcepub fn transform_job_name(&self) -> Option<&str>
pub fn transform_job_name(&self) -> Option<&str>
The name of the transform job.
sourcepub fn transform_job_arn(&self) -> Option<&str>
pub fn transform_job_arn(&self) -> Option<&str>
The Amazon Resource Name (ARN) of the transform job.
sourcepub fn creation_time(&self) -> Option<&DateTime>
pub fn creation_time(&self) -> Option<&DateTime>
A timestamp that shows when the transform Job was created.
sourcepub fn transform_end_time(&self) -> Option<&DateTime>
pub fn transform_end_time(&self) -> Option<&DateTime>
Indicates when the transform job ends on compute instances. For successful jobs and stopped jobs, this is the exact time recorded after the results are uploaded. For failed jobs, this is when Amazon SageMaker detected that the job failed.
sourcepub fn last_modified_time(&self) -> Option<&DateTime>
pub fn last_modified_time(&self) -> Option<&DateTime>
Indicates when the transform job was last modified.
sourcepub fn transform_job_status(&self) -> Option<&TransformJobStatus>
pub fn transform_job_status(&self) -> Option<&TransformJobStatus>
The status of the transform job.
sourcepub fn failure_reason(&self) -> Option<&str>
pub fn failure_reason(&self) -> Option<&str>
If the transform job failed, the reason it failed.
source§impl TransformJobSummary
impl TransformJobSummary
sourcepub fn builder() -> Builder
pub fn builder() -> Builder
Creates a new builder-style object to manufacture TransformJobSummary
.
Trait Implementations§
source§impl Clone for TransformJobSummary
impl Clone for TransformJobSummary
source§fn clone(&self) -> TransformJobSummary
fn clone(&self) -> TransformJobSummary
Returns a copy of the value. Read more
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moresource§impl Debug for TransformJobSummary
impl Debug for TransformJobSummary
source§impl PartialEq<TransformJobSummary> for TransformJobSummary
impl PartialEq<TransformJobSummary> for TransformJobSummary
source§fn eq(&self, other: &TransformJobSummary) -> bool
fn eq(&self, other: &TransformJobSummary) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.