[][src]Struct rusoto_sagemaker::ProcessingJobSummary

pub struct ProcessingJobSummary {
    pub creation_time: f64,
    pub exit_message: Option<String>,
    pub failure_reason: Option<String>,
    pub last_modified_time: Option<f64>,
    pub processing_end_time: Option<f64>,
    pub processing_job_arn: String,
    pub processing_job_name: String,
    pub processing_job_status: String,
}

Summary of information about a processing job.

Fields

creation_time: f64

The time at which the processing job was created.

exit_message: Option<String>

An optional string, up to one KB in size, that contains metadata from the processing container when the processing job exits.

failure_reason: Option<String>

A string, up to one KB in size, that contains the reason a processing job failed, if it failed.

last_modified_time: Option<f64>

A timestamp that indicates the last time the processing job was modified.

processing_end_time: Option<f64>

The time at which the processing job completed.

processing_job_arn: String

The Amazon Resource Name (ARN) of the processing job..

processing_job_name: String

The name of the processing job.

processing_job_status: String

The status of the processing job.

Trait Implementations

impl Clone for ProcessingJobSummary[src]

impl Debug for ProcessingJobSummary[src]

impl Default for ProcessingJobSummary[src]

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

impl PartialEq<ProcessingJobSummary> for ProcessingJobSummary[src]

impl StructuralPartialEq for ProcessingJobSummary[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, 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.