pub enum DeleteAcceleratorError {
AcceleratorNotDisabled(String),
AcceleratorNotFound(String),
AssociatedListenerFound(String),
InternalServiceError(String),
InvalidArgument(String),
}
Expand description
Errors returned by DeleteAccelerator
Variants§
AcceleratorNotDisabled(String)
The accelerator that you specified could not be disabled.
AcceleratorNotFound(String)
The accelerator that you specified doesn't exist.
AssociatedListenerFound(String)
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.
InternalServiceError(String)
There was an internal error for AWS Global Accelerator.
InvalidArgument(String)
An argument that you specified is invalid.
Implementations§
Source§impl DeleteAcceleratorError
impl DeleteAcceleratorError
pub fn from_response( res: BufferedHttpResponse, ) -> RusotoError<DeleteAcceleratorError>
Trait Implementations§
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
1.30.0 · Source§fn source(&self) -> Option<&(dyn Error + 'static)>
fn source(&self) -> Option<&(dyn Error + 'static)>
Returns the lower-level source of this error, if any. Read more
1.0.0 · Source§fn description(&self) -> &str
fn description(&self) -> &str
👎Deprecated since 1.42.0: use the Display impl or to_string()
Source§impl PartialEq for DeleteAcceleratorError
impl PartialEq for DeleteAcceleratorError
impl StructuralPartialEq for DeleteAcceleratorError
Auto Trait Implementations§
impl Freeze for DeleteAcceleratorError
impl RefUnwindSafe for DeleteAcceleratorError
impl Send for DeleteAcceleratorError
impl Sync for DeleteAcceleratorError
impl Unpin for DeleteAcceleratorError
impl UnwindSafe for DeleteAcceleratorError
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more