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

CreateCrawlerRequest

import type { CreateCrawlerRequest } from "https://aws-api.deno.dev/v0.3/services/glue.ts?docs=full";
interface CreateCrawlerRequest {
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;
Schedule?: string | null;
SchemaChangePolicy?: SchemaChangePolicy | null;
TablePrefix?: string | null;
Tags?: {
[key: string]: string | null | undefined;
}
| null;
Targets: CrawlerTargets;
}

§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 written, 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
[src]

The IAM role or Amazon Resource Name (ARN) of an IAM role 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.

§
Tags?: {
[key: string]: string | null | undefined;
}
| null
[src]

The tags to use with this crawler request. You may use tags to limit access to the crawler. For more information about tags in Glue, see Amazon Web Services Tags in Glue in the developer guide.

§

A list of collection of targets to crawl.