[−][src]Struct rusoto_glue::UpdateCrawlerRequest
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>
The 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 Amazon Resource Name (ARN) of an IAM role that is used by the new crawler to access customer resources.
schedule: Option<String>
A cron
expression used to specify the schedule. For more information, see Time-Based Schedules for Jobs and Crawlers. For example, to run something every day at 12:15 UTC, 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.
targets: Option<CrawlerTargets>
A list of targets to crawl.
Trait Implementations
impl PartialEq<UpdateCrawlerRequest> for UpdateCrawlerRequest
[src]
fn eq(&self, other: &UpdateCrawlerRequest) -> bool
[src]
fn ne(&self, other: &UpdateCrawlerRequest) -> bool
[src]
impl Default for UpdateCrawlerRequest
[src]
fn default() -> UpdateCrawlerRequest
[src]
impl Clone for UpdateCrawlerRequest
[src]
fn clone(&self) -> 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
impl Send for UpdateCrawlerRequest
impl Sync for UpdateCrawlerRequest
Blanket Implementations
impl<T> From for T
[src]
impl<T, U> Into for T where
U: From<T>,
[src]
U: From<T>,
impl<T> ToOwned for T where
T: Clone,
[src]
T: Clone,
impl<T, U> TryFrom for T where
T: From<U>,
[src]
T: From<U>,
type Error = !
try_from
)The type returned in the event of a conversion error.
fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>
[src]
impl<T> Borrow for T where
T: ?Sized,
[src]
T: ?Sized,
impl<T> BorrowMut for T where
T: ?Sized,
[src]
T: ?Sized,
fn borrow_mut(&mut self) -> &mut T
[src]
impl<T, U> TryInto for T where
U: TryFrom<T>,
[src]
U: TryFrom<T>,
type Error = <U as TryFrom<T>>::Error
try_from
)The type returned in the event of a conversion error.
fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>
[src]
impl<T> Any for T where
T: 'static + ?Sized,
[src]
T: 'static + ?Sized,
fn get_type_id(&self) -> TypeId
[src]
impl<T> Erased for T
impl<T> Same for T
type Output = T
Should always be Self