Hi there! Are you looking for the official Deno documentation? Try docs.deno.com for all your Deno learning needs.

UpdateCrawlerRequest

import type { UpdateCrawlerRequest } from "https://aws-api.deno.dev/v0.3/services/glue.ts?docs=full";
interface UpdateCrawlerRequest {
Classifiers?: string[] | null;
Configuration?: string | null;
CrawlerSecurityConfiguration?: string | null;
DatabaseName?: string | null;
Description?: string | null;
LakeFormationConfiguration?: LakeFormationConfiguration | null;
LineageConfiguration?: LineageConfiguration | null;
Name: string;
RecrawlPolicy?: RecrawlPolicy | null;
Role?: string | null;
Schedule?: string | null;
SchemaChangePolicy?: SchemaChangePolicy | null;
TablePrefix?: string | null;
Targets?: CrawlerTargets | null;
}

§Properties

§
Classifiers?: string[] | null
[src]

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.

§
Configuration?: string | null
[src]

Crawler configuration information. This versioned JSON string allows users to specify aspects of a crawler's behavior. For more information, see Configuring a Crawler.

§
CrawlerSecurityConfiguration?: string | null
[src]

The name of the SecurityConfiguration structure to be used by this crawler.

§
DatabaseName?: string | null
[src]

The Glue database where results are stored, such as: arn:aws:daylight:us-east-1::database/sometable/*.

§
Description?: string | null
[src]

A description of the new crawler.

§
LakeFormationConfiguration?: LakeFormationConfiguration | null
[src]
§
LineageConfiguration?: LineageConfiguration | null
[src]

Specifies data lineage configuration settings for the crawler.

§
Name: string
[src]

Name of the new crawler.

§
RecrawlPolicy?: RecrawlPolicy | null
[src]

A policy that specifies whether to crawl the entire dataset again, or to crawl only folders that were added since the last crawler run.

§
Role?: string | null
[src]

The IAM role or Amazon Resource Name (ARN) of an IAM role that is used by the new crawler to access customer resources.

§
Schedule?: string | null
[src]

A cron expression 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 * * ? *).

§
SchemaChangePolicy?: SchemaChangePolicy | null
[src]

The policy for the crawler's update and deletion behavior.

§
TablePrefix?: string | null
[src]

The table prefix used for catalog tables that are created.

§
Targets?: CrawlerTargets | null
[src]

A list of targets to crawl.