[][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 Clone for TransformJobSummary[src]

impl Debug for TransformJobSummary[src]

impl Default for TransformJobSummary[src]

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

impl PartialEq<TransformJobSummary> for TransformJobSummary[src]

impl StructuralPartialEq for TransformJobSummary[src]

Auto Trait Implementations

Blanket Implementations

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

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

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

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

impl<T> From<T> for T[src]

impl<T> Instrument for T[src]

impl<T> Instrument for T[src]

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

impl<T> Same<T> for T

type Output = T

Should always be Self

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

type Owned = T

The resulting type after obtaining ownership.

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

type Error = Infallible

The type returned in the event of a conversion error.

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

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

The type returned in the event of a conversion error.