[−][src]Struct rusoto_glue::CreateCrawlerRequest
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 written, 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: 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. 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.
The tags to use with this crawler request. You can use tags to limit access to the crawler. For more information, see AWS Tags in AWS Glue.
targets: CrawlerTargets
A list of collection of targets to crawl.
Trait Implementations
impl PartialEq<CreateCrawlerRequest> for CreateCrawlerRequest
[src]
fn eq(&self, other: &CreateCrawlerRequest) -> bool
[src]
fn ne(&self, other: &CreateCrawlerRequest) -> bool
[src]
impl Default for CreateCrawlerRequest
[src]
fn default() -> CreateCrawlerRequest
[src]
impl Clone for CreateCrawlerRequest
[src]
fn clone(&self) -> CreateCrawlerRequest
[src]
fn clone_from(&mut self, source: &Self)
1.0.0[src]
Performs copy-assignment from source
. Read more
impl Debug for CreateCrawlerRequest
[src]
impl Serialize for CreateCrawlerRequest
[src]
Auto Trait Implementations
impl Send for CreateCrawlerRequest
impl Sync for CreateCrawlerRequest
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