[][src]Struct rusoto_glue::CreateCrawlerRequest

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 built-in 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. For more information, see Configuring a Crawler.

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 Clone for CreateCrawlerRequest
[src]

Performs copy-assignment from source. Read more

impl Default for CreateCrawlerRequest
[src]

impl PartialEq<CreateCrawlerRequest> for CreateCrawlerRequest
[src]

impl Debug for CreateCrawlerRequest
[src]

impl Serialize for CreateCrawlerRequest
[src]

Auto Trait Implementations

Blanket Implementations

impl<T> From for T
[src]

impl<T, U> Into for T where
    U: From<T>, 
[src]

impl<T> ToOwned for T where
    T: Clone
[src]

impl<T, U> TryFrom for T where
    T: From<U>, 
[src]

🔬 This is a nightly-only experimental API. (try_from)

The type returned in the event of a conversion error.

impl<T> Borrow for T where
    T: ?Sized
[src]

impl<T, U> TryInto for T where
    U: TryFrom<T>, 
[src]

🔬 This is a nightly-only experimental API. (try_from)

The type returned in the event of a conversion error.

impl<T> BorrowMut for T where
    T: ?Sized
[src]

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Same for T

Should always be Self

impl<T> Erased for T