Show / Hide Table of Contents

Interface CfnCrawlerPropsMixin.IRecrawlPolicyProperty

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.

Namespace: Amazon.CDK.Mixins.Preview.AWS.Glue.Mixins
Assembly: Amazon.CDK.Mixins.Preview.dll
Syntax (csharp)
public interface CfnCrawlerPropsMixin.IRecrawlPolicyProperty
Syntax (vb)
Public Interface CfnCrawlerPropsMixin.IRecrawlPolicyProperty
Remarks

For more information, see Incremental Crawls in AWS Glue in the developer guide.

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-glue-crawler-recrawlpolicy.html

ExampleMetadata: fixture=_generated

Examples
// The code below shows an example of how to instantiate this type.
             // The values are placeholders you should change.
             using Amazon.CDK.Mixins.Preview.AWS.Glue.Mixins;

             var recrawlPolicyProperty = new RecrawlPolicyProperty {
                 RecrawlBehavior = "recrawlBehavior"
             };

Synopsis

Properties

RecrawlBehavior

Specifies whether to crawl the entire dataset again or to crawl only folders that were added since the last crawler run.

Properties

RecrawlBehavior

Specifies whether to crawl the entire dataset again or to crawl only folders that were added since the last crawler run.

string? RecrawlBehavior { get; }
Property Value

string

Remarks

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.

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-glue-crawler-recrawlpolicy.html#cfn-glue-crawler-recrawlpolicy-recrawlbehavior

Back to top Generated by DocFX