@Stability(value=Stable)
public static interface CfnCrawler.RecrawlPolicyProperty
extends software.amazon.jsii.JsiiSerializable
For more information, see Incremental Crawls in AWS Glue in the developer guide.
Example:
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import software.amazon.awscdk.services.glue.*;
RecrawlPolicyProperty recrawlPolicyProperty = RecrawlPolicyProperty.builder()
.recrawlBehavior("recrawlBehavior")
.build();
| Modifier and Type | Interface and Description |
|---|---|
static class |
CfnCrawler.RecrawlPolicyProperty.Builder
A builder for
CfnCrawler.RecrawlPolicyProperty |
static class |
CfnCrawler.RecrawlPolicyProperty.Jsii$Proxy
An implementation for
CfnCrawler.RecrawlPolicyProperty |
| Modifier and Type | Method and Description |
|---|---|
static CfnCrawler.RecrawlPolicyProperty.Builder |
builder() |
default String |
getRecrawlBehavior()
Specifies whether to crawl the entire dataset again or to crawl only folders that were added since the last crawler run.
|
@Stability(value=Stable) @Nullable default String getRecrawlBehavior()
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.
@Stability(value=Stable) static CfnCrawler.RecrawlPolicyProperty.Builder builder()
Copyright © 2022. All rights reserved.