#[non_exhaustive]pub enum StartCrawlerScheduleError {
EntityNotFoundException(EntityNotFoundException),
NoScheduleException(NoScheduleException),
OperationTimeoutException(OperationTimeoutException),
SchedulerRunningException(SchedulerRunningException),
SchedulerTransitioningException(SchedulerTransitioningException),
Unhandled(Unhandled),
}Expand description
Error type for the StartCrawlerScheduleError operation.
Variants (Non-exhaustive)§
This enum is marked as non-exhaustive
EntityNotFoundException(EntityNotFoundException)
A specified entity does not exist
NoScheduleException(NoScheduleException)
There is no applicable schedule.
OperationTimeoutException(OperationTimeoutException)
The operation timed out.
SchedulerRunningException(SchedulerRunningException)
The specified scheduler is already running.
SchedulerTransitioningException(SchedulerTransitioningException)
The specified scheduler is transitioning.
Unhandled(Unhandled)
An unexpected error occurred (e.g., invalid JSON returned by the service or an unknown error code).
Implementations§
source§impl StartCrawlerScheduleError
impl StartCrawlerScheduleError
sourcepub fn unhandled(err: impl Into<Box<dyn Error + Send + Sync + 'static>>) -> Self
pub fn unhandled(err: impl Into<Box<dyn Error + Send + Sync + 'static>>) -> Self
Creates the StartCrawlerScheduleError::Unhandled variant from any error type.
sourcepub fn generic(err: ErrorMetadata) -> Self
pub fn generic(err: ErrorMetadata) -> Self
Creates the StartCrawlerScheduleError::Unhandled variant from a ::aws_smithy_types::error::ErrorMetadata.
sourcepub fn meta(&self) -> &ErrorMetadata
pub fn meta(&self) -> &ErrorMetadata
Returns error metadata, which includes the error code, message, request ID, and potentially additional information.
sourcepub fn is_entity_not_found_exception(&self) -> bool
pub fn is_entity_not_found_exception(&self) -> bool
Returns true if the error kind is StartCrawlerScheduleError::EntityNotFoundException.
sourcepub fn is_no_schedule_exception(&self) -> bool
pub fn is_no_schedule_exception(&self) -> bool
Returns true if the error kind is StartCrawlerScheduleError::NoScheduleException.
sourcepub fn is_operation_timeout_exception(&self) -> bool
pub fn is_operation_timeout_exception(&self) -> bool
Returns true if the error kind is StartCrawlerScheduleError::OperationTimeoutException.
sourcepub fn is_scheduler_running_exception(&self) -> bool
pub fn is_scheduler_running_exception(&self) -> bool
Returns true if the error kind is StartCrawlerScheduleError::SchedulerRunningException.
sourcepub fn is_scheduler_transitioning_exception(&self) -> bool
pub fn is_scheduler_transitioning_exception(&self) -> bool
Returns true if the error kind is StartCrawlerScheduleError::SchedulerTransitioningException.
Trait Implementations§
source§impl CreateUnhandledError for StartCrawlerScheduleError
impl CreateUnhandledError for StartCrawlerScheduleError
source§fn create_unhandled_error(
source: Box<dyn Error + Send + Sync + 'static>,
meta: Option<ErrorMetadata>
) -> Self
fn create_unhandled_error( source: Box<dyn Error + Send + Sync + 'static>, meta: Option<ErrorMetadata> ) -> Self
source and error metadata.source§impl Debug for StartCrawlerScheduleError
impl Debug for StartCrawlerScheduleError
source§impl Display for StartCrawlerScheduleError
impl Display for StartCrawlerScheduleError
source§impl Error for StartCrawlerScheduleError
impl Error for StartCrawlerScheduleError
source§fn source(&self) -> Option<&(dyn Error + 'static)>
fn source(&self) -> Option<&(dyn Error + 'static)>
1.0.0 · source§fn description(&self) -> &str
fn description(&self) -> &str
source§impl From<StartCrawlerScheduleError> for Error
impl From<StartCrawlerScheduleError> for Error
source§fn from(err: StartCrawlerScheduleError) -> Self
fn from(err: StartCrawlerScheduleError) -> Self
source§impl ProvideErrorMetadata for StartCrawlerScheduleError
impl ProvideErrorMetadata for StartCrawlerScheduleError
source§fn meta(&self) -> &ErrorMetadata
fn meta(&self) -> &ErrorMetadata
source§impl RequestId for StartCrawlerScheduleError
impl RequestId for StartCrawlerScheduleError
source§fn request_id(&self) -> Option<&str>
fn request_id(&self) -> Option<&str>
None if the service could not be reached.