Struct aws_sdk_glue::model::TaskRunFilterCriteria
source · #[non_exhaustive]pub struct TaskRunFilterCriteria { /* private fields */ }Expand description
The criteria that are used to filter the task runs for the machine learning transform.
Implementations§
source§impl TaskRunFilterCriteria
impl TaskRunFilterCriteria
sourcepub fn task_run_type(&self) -> Option<&TaskType>
pub fn task_run_type(&self) -> Option<&TaskType>
The type of task run.
sourcepub fn status(&self) -> Option<&TaskStatusType>
pub fn status(&self) -> Option<&TaskStatusType>
The current status of the task run.
sourcepub fn started_before(&self) -> Option<&DateTime>
pub fn started_before(&self) -> Option<&DateTime>
Filter on task runs started before this date.
sourcepub fn started_after(&self) -> Option<&DateTime>
pub fn started_after(&self) -> Option<&DateTime>
Filter on task runs started after this date.
source§impl TaskRunFilterCriteria
impl TaskRunFilterCriteria
sourcepub fn builder() -> Builder
pub fn builder() -> Builder
Creates a new builder-style object to manufacture TaskRunFilterCriteria.
Trait Implementations§
source§impl Clone for TaskRunFilterCriteria
impl Clone for TaskRunFilterCriteria
source§fn clone(&self) -> TaskRunFilterCriteria
fn clone(&self) -> TaskRunFilterCriteria
Returns a copy of the value. Read more
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moresource§impl Debug for TaskRunFilterCriteria
impl Debug for TaskRunFilterCriteria
source§impl PartialEq<TaskRunFilterCriteria> for TaskRunFilterCriteria
impl PartialEq<TaskRunFilterCriteria> for TaskRunFilterCriteria
source§fn eq(&self, other: &TaskRunFilterCriteria) -> bool
fn eq(&self, other: &TaskRunFilterCriteria) -> bool
This method tests for
self and other values to be equal, and is used
by ==.