pub struct TransformJobSummary {
pub creation_time: f64,
pub failure_reason: Option<String>,
pub last_modified_time: Option<f64>,
pub transform_end_time: Option<f64>,
pub transform_job_arn: String,
pub transform_job_name: String,
pub transform_job_status: String,
}
Expand description
Provides a summary of a transform job. Multiple TransformJobSummary
objects are returned as a list after in response to a ListTransformJobs call.
Fields§
§creation_time: f64
A timestamp that shows when the transform Job was created.
failure_reason: Option<String>
If the transform job failed, the reason it failed.
last_modified_time: Option<f64>
Indicates when the transform job was last modified.
transform_end_time: Option<f64>
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.
transform_job_arn: String
The Amazon Resource Name (ARN) of the transform job.
transform_job_name: String
The name of the transform job.
transform_job_status: String
The status of the transform job.
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 Default for TransformJobSummary
impl Default for TransformJobSummary
Source§fn default() -> TransformJobSummary
fn default() -> TransformJobSummary
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for TransformJobSummary
impl<'de> Deserialize<'de> for TransformJobSummary
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Source§impl PartialEq for TransformJobSummary
impl PartialEq for TransformJobSummary
impl StructuralPartialEq for TransformJobSummary
Auto Trait Implementations§
impl Freeze for TransformJobSummary
impl RefUnwindSafe for TransformJobSummary
impl Send for TransformJobSummary
impl Sync for TransformJobSummary
impl Unpin for TransformJobSummary
impl UnwindSafe for TransformJobSummary
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
Mutably borrows from an owned value. Read more