Class: Aws::Glue::Types::RecrawlPolicy

Inherits:
Struct
  • Object
show all
Defined in:
gems/aws-sdk-glue/lib/aws-sdk-glue/types.rb

Overview

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.

Constant Summary collapse

SENSITIVE =
[]

Instance Attribute Summary collapse

Instance Attribute Details

#recrawl_behaviorString

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.

Returns:

  • (String)


17230
17231
17232
17233
17234
# File 'gems/aws-sdk-glue/lib/aws-sdk-glue/types.rb', line 17230

class RecrawlPolicy < Struct.new(
  :recrawl_behavior)
  SENSITIVE = []
  include Aws::Structure
end