pub enum CreateAcceleratorError {
InternalServiceError(String),
InvalidArgument(String),
LimitExceeded(String),
}
Expand description
Errors returned by CreateAccelerator
Variants§
InternalServiceError(String)
There was an internal error for AWS Global Accelerator.
InvalidArgument(String)
An argument that you specified is invalid.
LimitExceeded(String)
Processing your request would cause you to exceed an AWS Global Accelerator limit.
Implementations§
Source§impl CreateAcceleratorError
impl CreateAcceleratorError
pub fn from_response( res: BufferedHttpResponse, ) -> RusotoError<CreateAcceleratorError>
Trait Implementations§
Source§impl Debug for CreateAcceleratorError
impl Debug for CreateAcceleratorError
Source§impl Display for CreateAcceleratorError
impl Display for CreateAcceleratorError
Source§impl Error for CreateAcceleratorError
impl Error for CreateAcceleratorError
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 CreateAcceleratorError
impl PartialEq for CreateAcceleratorError
impl StructuralPartialEq for CreateAcceleratorError
Auto Trait Implementations§
impl Freeze for CreateAcceleratorError
impl RefUnwindSafe for CreateAcceleratorError
impl Send for CreateAcceleratorError
impl Sync for CreateAcceleratorError
impl Unpin for CreateAcceleratorError
impl UnwindSafe for CreateAcceleratorError
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