pub enum UpdateEndpointGroupError {
AccessDenied(String),
EndpointGroupNotFound(String),
InternalServiceError(String),
InvalidArgument(String),
LimitExceeded(String),
}
Expand description
Errors returned by UpdateEndpointGroup
Variants§
AccessDenied(String)
You don't have access permission.
EndpointGroupNotFound(String)
The endpoint group that you specified doesn't exist.
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 UpdateEndpointGroupError
impl UpdateEndpointGroupError
pub fn from_response( res: BufferedHttpResponse, ) -> RusotoError<UpdateEndpointGroupError>
Trait Implementations§
Source§impl Debug for UpdateEndpointGroupError
impl Debug for UpdateEndpointGroupError
Source§impl Display for UpdateEndpointGroupError
impl Display for UpdateEndpointGroupError
Source§impl Error for UpdateEndpointGroupError
impl Error for UpdateEndpointGroupError
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 UpdateEndpointGroupError
impl PartialEq for UpdateEndpointGroupError
impl StructuralPartialEq for UpdateEndpointGroupError
Auto Trait Implementations§
impl Freeze for UpdateEndpointGroupError
impl RefUnwindSafe for UpdateEndpointGroupError
impl Send for UpdateEndpointGroupError
impl Sync for UpdateEndpointGroupError
impl Unpin for UpdateEndpointGroupError
impl UnwindSafe for UpdateEndpointGroupError
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