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]

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

impl Debug for UpdateCrawlerScheduleRequest
[src]

Formats the value using the given formatter. Read more

impl Clone for UpdateCrawlerScheduleRequest
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl PartialEq for UpdateCrawlerScheduleRequest
[src]

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

This method tests for !=.

Auto Trait Implementations