logo
pub struct UpdateCrawlerRequest {
Show 13 fields 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: 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 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.

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: 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 (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.

targets: Option<CrawlerTargets>

A list of targets to crawl.

Trait Implementations

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

Formats the value using the given formatter. Read more

Returns the “default value” for a type. Read more

This method tests for self and other values to be equal, and is used by ==. Read more

This method tests for !=.

Serialize this value into the given Serde serializer. Read more

Auto Trait Implementations

Blanket Implementations

Gets the TypeId of self. Read more

Immutably borrows from an owned value. Read more

Mutably borrows from an owned value. Read more

Returns the argument unchanged.

Instruments this type with the provided Span, returning an Instrumented wrapper. Read more

Instruments this type with the current Span, returning an Instrumented wrapper. Read more

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

Should always be Self

The resulting type after obtaining ownership.

Creates owned data from borrowed data, usually by cloning. Read more

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

Uses borrowed data to replace owned data, usually by cloning. Read more

The type returned in the event of a conversion error.

Performs the conversion.

The type returned in the event of a conversion error.

Performs the conversion.

Attaches the provided Subscriber to this type, returning a WithDispatch wrapper. Read more

Attaches the current default Subscriber to this type, returning a WithDispatch wrapper. Read more