Updates a crawler. If a crawler is running, you must stop it using stop_crawler before updating it.
See https://www.paws-r-sdk.com/docs/glue_update_crawler/ for full documentation.
Usage
glue_update_crawler(
Name,
Role = NULL,
DatabaseName = NULL,
Description = NULL,
Targets = NULL,
Schedule = NULL,
Classifiers = NULL,
TablePrefix = NULL,
SchemaChangePolicy = NULL,
RecrawlPolicy = NULL,
LineageConfiguration = NULL,
LakeFormationConfiguration = NULL,
Configuration = NULL,
CrawlerSecurityConfiguration = NULL
)Arguments
- Name
[required] Name of the new crawler.
- Role
The IAM role or Amazon Resource Name (ARN) of an IAM role that is used by the new crawler to access customer resources.
- DatabaseName
The Glue database where results are stored, such as:
arn:aws:daylight:us-east-1::database/sometable/*.- Description
A description of the new crawler.
- Targets
A list of targets to crawl.
- Schedule
A
cronexpression used to specify the schedule (see Time-Based Schedules for Jobs and Crawlers. For example, to run something every day at 12:15 UTC, you would specify:cron(15 12 * * ? *).- Classifiers
A list of custom classifiers that the user has registered. By default, all built-in classifiers are included in a crawl, but these custom classifiers always override the default classifiers for a given classification.
- TablePrefix
The table prefix used for catalog tables that are created.
- SchemaChangePolicy
The policy for the crawler's update and deletion behavior.
- RecrawlPolicy
A policy that specifies whether to crawl the entire dataset again, or to crawl only folders that were added since the last crawler run.
- LineageConfiguration
Specifies data lineage configuration settings for the crawler.
- LakeFormationConfiguration
Specifies Lake Formation configuration settings for the crawler.
- Configuration
Crawler configuration information. This versioned JSON string allows users to specify aspects of a crawler's behavior. For more information, see Setting crawler configuration options.
- CrawlerSecurityConfiguration
The name of the
SecurityConfigurationstructure to be used by this crawler.