[][src]Struct rusoto_glue::UpdateCrawlerRequest

pub struct UpdateCrawlerRequest {
    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 name: String,
    pub role: Option<String>,
    pub schedule: Option<String>,
    pub schema_change_policy: Option<SchemaChangePolicy>,
    pub table_prefix: Option<String>,
    pub targets: Option<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 stored, such as: arn:aws:daylight:us-east-1::database/sometable/*.

description: Option<String>

A description of the new crawler.

name: String

Name of the new crawler.

role: Option<String>

The IAM role (or 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>

Policy for the crawler's update and deletion behavior.

table_prefix: Option<String>

The table prefix used for catalog tables that are created.

targets: Option<CrawlerTargets>

A list of targets to crawl.

Trait Implementations

impl PartialEq<UpdateCrawlerRequest> for UpdateCrawlerRequest[src]

impl Default for UpdateCrawlerRequest[src]

impl Clone for UpdateCrawlerRequest[src]

fn clone_from(&mut self, source: &Self)
1.0.0
[src]

Performs copy-assignment from source. Read more

impl Debug for UpdateCrawlerRequest[src]

impl Serialize for UpdateCrawlerRequest[src]

Auto Trait Implementations

Blanket Implementations

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

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

type Owned = T

impl<T> From for T[src]

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

type Error = Infallible

The type returned in the event of a conversion error.

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

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

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

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

The type returned in the event of a conversion error.

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

impl<T> Erased for T

impl<T> Same for T

type Output = T

Should always be Self