Struct rusoto_glue::CreateCrawlerRequest[][src]

pub struct CreateCrawlerRequest {
    pub classifiers: Option<Vec<String>>,
    pub configuration: Option<String>,
    pub database_name: String,
    pub description: Option<String>,
    pub name: String,
    pub role: String,
    pub schedule: Option<String>,
    pub schema_change_policy: Option<SchemaChangePolicy>,
    pub table_prefix: Option<String>,
    pub targets: CrawlerTargets,
}

Fields

A list of custom classifiers that the user has registered. By default, all AWS classifiers are included in a crawl, but these custom classifiers always override the default classifiers for a given classification.

Crawler configuration information. This versioned JSON string allows users to specify aspects of a Crawler's behavior.

You can use this field to force partitions to inherit metadata such as classification, input format, output format, serde information, and schema from their parent table, rather than detect this information separately for each partition. Use the following JSON string to specify that behavior:

Example: '{ "Version": 1.0, "CrawlerOutput": { "Partitions": { "AddOrUpdateBehavior": "InheritFromTable" } } }'

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

A description of the new crawler.

Name of the new crawler.

The IAM role (or ARN of an IAM role) used by the new crawler to access customer resources.

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

Policy for the crawler's update and deletion behavior.

The table prefix used for catalog tables that are created.

A list of collection of targets to crawl.

Trait Implementations

impl Default for CreateCrawlerRequest
[src]

Returns the "default value" for a type. Read more

impl Debug for CreateCrawlerRequest
[src]

Formats the value using the given formatter. Read more

impl Clone for CreateCrawlerRequest
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl PartialEq for CreateCrawlerRequest
[src]

This method tests for self and other values to be equal, and is used by ==. Read more

This method tests for !=.

Auto Trait Implementations