[][src]Struct rusoto_glue::GetMLTaskRunResponse

pub struct GetMLTaskRunResponse {
    pub completed_on: Option<f64>,
    pub error_string: Option<String>,
    pub execution_time: Option<i64>,
    pub last_modified_on: Option<f64>,
    pub log_group_name: Option<String>,
    pub properties: Option<TaskRunProperties>,
    pub started_on: Option<f64>,
    pub status: Option<String>,
    pub task_run_id: Option<String>,
    pub transform_id: Option<String>,
}

Fields

completed_on: Option<f64>

The date and time when this task run was completed.

error_string: Option<String>

The error strings that are associated with the task run.

execution_time: Option<i64>

The amount of time (in seconds) that the task run consumed resources.

last_modified_on: Option<f64>

The date and time when this task run was last modified.

log_group_name: Option<String>

The names of the log groups that are associated with the task run.

properties: Option<TaskRunProperties>

The list of properties that are associated with the task run.

started_on: Option<f64>

The date and time when this task run started.

status: Option<String>

The status for this task run.

task_run_id: Option<String>

The unique run identifier associated with this run.

transform_id: Option<String>

The unique identifier of the task run.

Trait Implementations

impl Clone for GetMLTaskRunResponse[src]

impl Debug for GetMLTaskRunResponse[src]

impl Default for GetMLTaskRunResponse[src]

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

impl PartialEq<GetMLTaskRunResponse> for GetMLTaskRunResponse[src]

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