pub enum CreateIpGroupError {
AccessDenied(String),
InvalidParameterValues(String),
ResourceAlreadyExists(String),
ResourceCreationFailed(String),
ResourceLimitExceeded(String),
}Expand description
Errors returned by CreateIpGroup
Variants§
AccessDenied(String)
The user is not authorized to access a resource.
InvalidParameterValues(String)
One or more parameter values are not valid.
ResourceAlreadyExists(String)
The specified resource already exists.
ResourceCreationFailed(String)
The resource could not be created.
ResourceLimitExceeded(String)
Your resource limits have been exceeded.
Implementations§
Source§impl CreateIpGroupError
impl CreateIpGroupError
pub fn from_response( res: BufferedHttpResponse, ) -> RusotoError<CreateIpGroupError>
Trait Implementations§
Source§impl Debug for CreateIpGroupError
impl Debug for CreateIpGroupError
Source§impl Display for CreateIpGroupError
impl Display for CreateIpGroupError
Source§impl Error for CreateIpGroupError
impl Error for CreateIpGroupError
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 CreateIpGroupError
impl PartialEq for CreateIpGroupError
impl StructuralPartialEq for CreateIpGroupError
Auto Trait Implementations§
impl Freeze for CreateIpGroupError
impl RefUnwindSafe for CreateIpGroupError
impl Send for CreateIpGroupError
impl Sync for CreateIpGroupError
impl Unpin for CreateIpGroupError
impl UnwindSafe for CreateIpGroupError
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