[][src]Struct rusoto_glue::TaskRunFilterCriteria

pub struct TaskRunFilterCriteria {
    pub started_after: Option<f64>,
    pub started_before: Option<f64>,
    pub status: Option<String>,
    pub task_run_type: Option<String>,
}

The criteria that are used to filter the task runs for the machine learning transform.

Fields

started_after: Option<f64>

Filter on task runs started after this date.

started_before: Option<f64>

Filter on task runs started before this date.

status: Option<String>

The current status of the task run.

task_run_type: Option<String>

The type of task run.

Trait Implementations

impl Clone for TaskRunFilterCriteria[src]

impl Debug for TaskRunFilterCriteria[src]

impl Default for TaskRunFilterCriteria[src]

impl PartialEq<TaskRunFilterCriteria> for TaskRunFilterCriteria[src]

impl Serialize for TaskRunFilterCriteria[src]

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