pub enum CreateFirewallRuleError {
AccessDenied(String),
InternalServiceError(String),
LimitExceeded(String),
ResourceNotFound(String),
Throttling(String),
}
Expand description
Errors returned by CreateFirewallRule
Variants§
AccessDenied(String)
The current account doesn't have the IAM permissions required to perform the specified Resolver operation.
InternalServiceError(String)
We encountered an unknown error. Try again in a few minutes.
LimitExceeded(String)
The request caused one or more limits to be exceeded.
ResourceNotFound(String)
The specified resource doesn't exist.
Throttling(String)
The request was throttled. Try again in a few minutes.
Implementations§
Source§impl CreateFirewallRuleError
impl CreateFirewallRuleError
pub fn from_response( res: BufferedHttpResponse, ) -> RusotoError<CreateFirewallRuleError>
Trait Implementations§
Source§impl Debug for CreateFirewallRuleError
impl Debug for CreateFirewallRuleError
Source§impl Display for CreateFirewallRuleError
impl Display for CreateFirewallRuleError
Source§impl Error for CreateFirewallRuleError
impl Error for CreateFirewallRuleError
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 CreateFirewallRuleError
impl PartialEq for CreateFirewallRuleError
impl StructuralPartialEq for CreateFirewallRuleError
Auto Trait Implementations§
impl Freeze for CreateFirewallRuleError
impl RefUnwindSafe for CreateFirewallRuleError
impl Send for CreateFirewallRuleError
impl Sync for CreateFirewallRuleError
impl Unpin for CreateFirewallRuleError
impl UnwindSafe for CreateFirewallRuleError
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