Struct rusoto_glue::UpdateCrawlerScheduleRequest [] [src]

pub struct UpdateCrawlerScheduleRequest {
    pub crawler_name: String,
    pub schedule: Option<String>,
}

Fields

Name of the crawler whose schedule to update.

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

Trait Implementations

impl Default for UpdateCrawlerScheduleRequest
[src]

[src]

Returns the "default value" for a type. Read more

impl Debug for UpdateCrawlerScheduleRequest
[src]

[src]

Formats the value using the given formatter. Read more

impl Clone for UpdateCrawlerScheduleRequest
[src]

[src]

Returns a copy of the value. Read more

1.0.0
[src]

Performs copy-assignment from source. Read more

Auto Trait Implementations