Struct aws_sdk_glue::model::CrawlsFilter
source · #[non_exhaustive]pub struct CrawlsFilter { /* private fields */ }Expand description
A list of fields, comparators and value that you can use to filter the crawler runs for a specified crawler.
Implementations§
source§impl CrawlsFilter
impl CrawlsFilter
sourcepub fn field_name(&self) -> Option<&FieldName>
pub fn field_name(&self) -> Option<&FieldName>
A key used to filter the crawler runs for a specified crawler. Valid values for each of the field names are:
-
CRAWL_ID: A string representing the UUID identifier for a crawl. -
STATE: A string representing the state of the crawl. -
START_TIMEandEND_TIME: The epoch timestamp in milliseconds. -
DPU_HOUR: The number of data processing unit (DPU) hours used for the crawl.
sourcepub fn filter_operator(&self) -> Option<&FilterOperator>
pub fn filter_operator(&self) -> Option<&FilterOperator>
A defined comparator that operates on the value. The available operators are:
-
GT: Greater than. -
GE: Greater than or equal to. -
LT: Less than. -
LE: Less than or equal to. -
EQ: Equal to. -
NE: Not equal to.
sourcepub fn field_value(&self) -> Option<&str>
pub fn field_value(&self) -> Option<&str>
The value provided for comparison on the crawl field.
source§impl CrawlsFilter
impl CrawlsFilter
sourcepub fn builder() -> Builder
pub fn builder() -> Builder
Creates a new builder-style object to manufacture CrawlsFilter.
Trait Implementations§
source§impl Clone for CrawlsFilter
impl Clone for CrawlsFilter
source§fn clone(&self) -> CrawlsFilter
fn clone(&self) -> CrawlsFilter
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source. Read moresource§impl Debug for CrawlsFilter
impl Debug for CrawlsFilter
source§impl PartialEq<CrawlsFilter> for CrawlsFilter
impl PartialEq<CrawlsFilter> for CrawlsFilter
source§fn eq(&self, other: &CrawlsFilter) -> bool
fn eq(&self, other: &CrawlsFilter) -> bool
self and other values to be equal, and is used
by ==.