[][src]Struct rusoto_sagemaker::TransformJobSummary

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,
}

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

impl PartialEq<TransformJobSummary> for TransformJobSummary[src]

impl Default for TransformJobSummary[src]

impl Clone for TransformJobSummary[src]

fn clone_from(&mut self, source: &Self)
1.0.0
[src]

Performs copy-assignment from source. Read more

impl Debug for TransformJobSummary[src]

impl<'de> Deserialize<'de> for TransformJobSummary[src]

Auto Trait Implementations

impl Send for TransformJobSummary

impl Sync for TransformJobSummary

Blanket Implementations

impl<T> From for T[src]

impl<T, U> Into for T where
    U: From<T>, 
[src]

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

impl<T, U> TryFrom for T where
    T: From<U>, 
[src]

type Error = !

🔬 This is a nightly-only experimental API. (try_from)

The type returned in the event of a conversion error.

impl<T> Borrow for T where
    T: ?Sized
[src]

impl<T> BorrowMut for T where
    T: ?Sized
[src]

impl<T, U> TryInto for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

🔬 This is a nightly-only experimental API. (try_from)

The type returned in the event of a conversion error.

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> DeserializeOwned for T where
    T: Deserialize<'de>, 
[src]

impl<T> Erased for T

impl<T> Same for T

type Output = T

Should always be Self