Enum rusoto_glue::StartCrawlerScheduleError[][src]

pub enum StartCrawlerScheduleError {
    EntityNotFound(String),
    NoSchedule(String),
    OperationTimeout(String),
    SchedulerRunning(String),
    SchedulerTransitioning(String),
    HttpDispatch(HttpDispatchError),
    Credentials(CredentialsError),
    Validation(String),
    Unknown(String),
}

Errors returned by StartCrawlerSchedule

Variants

A specified entity does not exist

There is no applicable schedule.

The operation timed out.

The specified scheduler is already running.

The specified scheduler is transitioning.

An error occurred dispatching the HTTP request

An error was encountered with AWS credentials.

A validation error occurred. Details from AWS are provided.

An unknown error occurred. The raw HTTP response is provided.

Methods

impl StartCrawlerScheduleError
[src]

Trait Implementations

impl Debug for StartCrawlerScheduleError
[src]

Formats the value using the given formatter. Read more

impl PartialEq for StartCrawlerScheduleError
[src]

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

This method tests for !=.

impl From<Error> for StartCrawlerScheduleError
[src]

Performs the conversion.

impl From<CredentialsError> for StartCrawlerScheduleError
[src]

Performs the conversion.

impl From<HttpDispatchError> for StartCrawlerScheduleError
[src]

Performs the conversion.

impl From<Error> for StartCrawlerScheduleError
[src]

Performs the conversion.

impl Display for StartCrawlerScheduleError
[src]

Formats the value using the given formatter. Read more

impl Error for StartCrawlerScheduleError
[src]

This method is soft-deprecated. Read more

The lower-level cause of this error, if any. Read more

Auto Trait Implementations