pub enum AssociateIpGroupsError {
AccessDenied(String),
InvalidParameterValues(String),
InvalidResourceState(String),
OperationNotSupported(String),
ResourceLimitExceeded(String),
ResourceNotFound(String),
}Expand description
Errors returned by AssociateIpGroups
Variants§
AccessDenied(String)
The user is not authorized to access a resource.
InvalidParameterValues(String)
One or more parameter values are not valid.
InvalidResourceState(String)
The state of the resource is not valid for this operation.
OperationNotSupported(String)
This operation is not supported.
ResourceLimitExceeded(String)
Your resource limits have been exceeded.
ResourceNotFound(String)
The resource could not be found.
Implementations§
Source§impl AssociateIpGroupsError
impl AssociateIpGroupsError
pub fn from_response( res: BufferedHttpResponse, ) -> RusotoError<AssociateIpGroupsError>
Trait Implementations§
Source§impl Debug for AssociateIpGroupsError
impl Debug for AssociateIpGroupsError
Source§impl Display for AssociateIpGroupsError
impl Display for AssociateIpGroupsError
Source§impl Error for AssociateIpGroupsError
impl Error for AssociateIpGroupsError
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 AssociateIpGroupsError
impl PartialEq for AssociateIpGroupsError
impl StructuralPartialEq for AssociateIpGroupsError
Auto Trait Implementations§
impl Freeze for AssociateIpGroupsError
impl RefUnwindSafe for AssociateIpGroupsError
impl Send for AssociateIpGroupsError
impl Sync for AssociateIpGroupsError
impl Unpin for AssociateIpGroupsError
impl UnwindSafe for AssociateIpGroupsError
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