Struct aws_sdk_glue::model::RecrawlPolicy
source · #[non_exhaustive]pub struct RecrawlPolicy { /* private fields */ }Expand description
When crawling an Amazon S3 data source after the first crawl is complete, specifies whether to crawl the entire dataset again or to crawl only folders that were added since the last crawler run. For more information, see Incremental Crawls in Glue in the developer guide.
Implementations§
source§impl RecrawlPolicy
impl RecrawlPolicy
sourcepub fn recrawl_behavior(&self) -> Option<&RecrawlBehavior>
pub fn recrawl_behavior(&self) -> Option<&RecrawlBehavior>
Specifies whether to crawl the entire dataset again or to crawl only folders that were added since the last crawler run.
A value of CRAWL_EVERYTHING specifies crawling the entire dataset again.
A value of CRAWL_NEW_FOLDERS_ONLY specifies crawling only folders that were added since the last crawler run.
A value of CRAWL_EVENT_MODE specifies crawling only the changes identified by Amazon S3 events.
source§impl RecrawlPolicy
impl RecrawlPolicy
sourcepub fn builder() -> Builder
pub fn builder() -> Builder
Creates a new builder-style object to manufacture RecrawlPolicy.
Trait Implementations§
source§impl Clone for RecrawlPolicy
impl Clone for RecrawlPolicy
source§fn clone(&self) -> RecrawlPolicy
fn clone(&self) -> RecrawlPolicy
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 RecrawlPolicy
impl Debug for RecrawlPolicy
source§impl PartialEq<RecrawlPolicy> for RecrawlPolicy
impl PartialEq<RecrawlPolicy> for RecrawlPolicy
source§fn eq(&self, other: &RecrawlPolicy) -> bool
fn eq(&self, other: &RecrawlPolicy) -> bool
This method tests for
self and other values to be equal, and is used
by ==.