pub enum UpdateAcceleratorAttributesError {
AcceleratorNotFound(String),
AccessDenied(String),
InternalServiceError(String),
InvalidArgument(String),
}
Expand description
Errors returned by UpdateAcceleratorAttributes
Variants§
AcceleratorNotFound(String)
The accelerator that you specified doesn't exist.
AccessDenied(String)
You don't have access permission.
InternalServiceError(String)
There was an internal error for AWS Global Accelerator.
InvalidArgument(String)
An argument that you specified is invalid.
Implementations§
Trait Implementations§
Source§impl Error for UpdateAcceleratorAttributesError
impl Error for UpdateAcceleratorAttributesError
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 UpdateAcceleratorAttributesError
impl PartialEq for UpdateAcceleratorAttributesError
Source§fn eq(&self, other: &UpdateAcceleratorAttributesError) -> bool
fn eq(&self, other: &UpdateAcceleratorAttributesError) -> bool
Tests for
self
and other
values to be equal, and is used by ==
.impl StructuralPartialEq for UpdateAcceleratorAttributesError
Auto Trait Implementations§
impl Freeze for UpdateAcceleratorAttributesError
impl RefUnwindSafe for UpdateAcceleratorAttributesError
impl Send for UpdateAcceleratorAttributesError
impl Sync for UpdateAcceleratorAttributesError
impl Unpin for UpdateAcceleratorAttributesError
impl UnwindSafe for UpdateAcceleratorAttributesError
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