[][src]Struct rusoto_glue::CreateCrawlerRequest

pub struct CreateCrawlerRequest {
    pub classifiers: Option<Vec<String>>,
    pub configuration: Option<String>,
    pub crawler_security_configuration: Option<String>,
    pub database_name: Option<String>,
    pub description: Option<String>,
    pub lineage_configuration: Option<LineageConfiguration>,
    pub name: String,
    pub recrawl_policy: Option<RecrawlPolicy>,
    pub role: String,
    pub schedule: Option<String>,
    pub schema_change_policy: Option<SchemaChangePolicy>,
    pub table_prefix: Option<String>,
    pub tags: Option<HashMap<String, String>>,
    pub targets: CrawlerTargets,
}

Fields

classifiers: Option<Vec<String>>

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: Option<String>

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

crawler_security_configuration: Option<String>

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

database_name: Option<String>

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

description: Option<String>

A description of the new crawler.

lineage_configuration: Option<LineageConfiguration>

Specifies data lineage configuration settings for the crawler.

name: String

Name of the new crawler.

recrawl_policy: Option<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.

role: String

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

schedule: Option<String>

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

schema_change_policy: Option<SchemaChangePolicy>

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

table_prefix: Option<String>

The table prefix used for catalog tables that are created.

tags: Option<HashMap<String, String>>

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

targets: CrawlerTargets

A list of collection of targets to crawl.

Trait Implementations

impl Clone for CreateCrawlerRequest[src]

impl Debug for CreateCrawlerRequest[src]

impl Default for CreateCrawlerRequest[src]

impl PartialEq<CreateCrawlerRequest> for CreateCrawlerRequest[src]

impl Serialize for CreateCrawlerRequest[src]

impl StructuralPartialEq for CreateCrawlerRequest[src]

Auto Trait Implementations

Blanket Implementations

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

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

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

impl<T> From<T> for T[src]

impl<T> Instrument for T[src]

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

impl<T> Same<T> for T

type Output = T

Should always be Self

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

type Owned = T

The resulting type after obtaining ownership.

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

type Error = Infallible

The type returned in the event of a conversion error.

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

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.