[][src]Struct rusoto_glue::TaskRun

pub struct TaskRun {
    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>,
}

The sampling parameters that are associated with the machine learning transform.

Fields

completed_on: Option<f64>

The last point in time that the requested task run was completed.

error_string: Option<String>

The list of error strings associated with this task run.

execution_time: Option<i64>

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

last_modified_on: Option<f64>

The last point in time that the requested task run was updated.

log_group_name: Option<String>

The names of the log group for secure logging, associated with this task run.

properties: Option<TaskRunProperties>

Specifies configuration properties associated with this task run.

started_on: Option<f64>

The date and time that this task run started.

status: Option<String>

The current status of the requested task run.

task_run_id: Option<String>

The unique identifier for this task run.

transform_id: Option<String>

The unique identifier for the transform.

Trait Implementations

impl Clone for TaskRun[src]

impl Debug for TaskRun[src]

impl Default for TaskRun[src]

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

impl PartialEq<TaskRun> for TaskRun[src]

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