#[non_exhaustive]pub enum DeleteAcceleratorError {
AcceleratorNotDisabledException(AcceleratorNotDisabledException),
AcceleratorNotFoundException(AcceleratorNotFoundException),
AssociatedListenerFoundException(AssociatedListenerFoundException),
InternalServiceErrorException(InternalServiceErrorException),
InvalidArgumentException(InvalidArgumentException),
Unhandled(Unhandled),
}
Expand description
Error type for the DeleteAcceleratorError
operation.
Variants (Non-exhaustive)§
This enum is marked as non-exhaustive
AcceleratorNotDisabledException(AcceleratorNotDisabledException)
The accelerator that you specified could not be disabled.
AcceleratorNotFoundException(AcceleratorNotFoundException)
The accelerator that you specified doesn't exist.
AssociatedListenerFoundException(AssociatedListenerFoundException)
The accelerator that you specified has a listener associated with it. You must remove all dependent resources from an accelerator before you can delete it.
InternalServiceErrorException(InternalServiceErrorException)
There was an internal error for Global Accelerator.
InvalidArgumentException(InvalidArgumentException)
An argument that you specified is invalid.
Unhandled(Unhandled)
An unexpected error occurred (e.g., invalid JSON returned by the service or an unknown error code).
Implementations§
source§impl DeleteAcceleratorError
impl DeleteAcceleratorError
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 DeleteAcceleratorError::Unhandled
variant from any error type.
sourcepub fn generic(err: ErrorMetadata) -> Self
pub fn generic(err: ErrorMetadata) -> Self
Creates the DeleteAcceleratorError::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_accelerator_not_disabled_exception(&self) -> bool
pub fn is_accelerator_not_disabled_exception(&self) -> bool
Returns true
if the error kind is DeleteAcceleratorError::AcceleratorNotDisabledException
.
sourcepub fn is_accelerator_not_found_exception(&self) -> bool
pub fn is_accelerator_not_found_exception(&self) -> bool
Returns true
if the error kind is DeleteAcceleratorError::AcceleratorNotFoundException
.
sourcepub fn is_associated_listener_found_exception(&self) -> bool
pub fn is_associated_listener_found_exception(&self) -> bool
Returns true
if the error kind is DeleteAcceleratorError::AssociatedListenerFoundException
.
sourcepub fn is_internal_service_error_exception(&self) -> bool
pub fn is_internal_service_error_exception(&self) -> bool
Returns true
if the error kind is DeleteAcceleratorError::InternalServiceErrorException
.
sourcepub fn is_invalid_argument_exception(&self) -> bool
pub fn is_invalid_argument_exception(&self) -> bool
Returns true
if the error kind is DeleteAcceleratorError::InvalidArgumentException
.
Trait Implementations§
source§impl CreateUnhandledError for DeleteAcceleratorError
impl CreateUnhandledError for DeleteAcceleratorError
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 DeleteAcceleratorError
impl Debug for DeleteAcceleratorError
source§impl Display for DeleteAcceleratorError
impl Display for DeleteAcceleratorError
source§impl Error for DeleteAcceleratorError
impl Error for DeleteAcceleratorError
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<DeleteAcceleratorError> for Error
impl From<DeleteAcceleratorError> for Error
source§fn from(err: DeleteAcceleratorError) -> Self
fn from(err: DeleteAcceleratorError) -> Self
source§impl ProvideErrorMetadata for DeleteAcceleratorError
impl ProvideErrorMetadata for DeleteAcceleratorError
source§fn meta(&self) -> &ErrorMetadata
fn meta(&self) -> &ErrorMetadata
source§impl RequestId for DeleteAcceleratorError
impl RequestId for DeleteAcceleratorError
source§fn request_id(&self) -> Option<&str>
fn request_id(&self) -> Option<&str>
None
if the service could not be reached.