pub enum GetGeneratedPolicyError {
AccessDenied(String),
InternalServer(String),
Throttling(String),
}
Expand description
Errors returned by GetGeneratedPolicy
Variants§
AccessDenied(String)
You do not have sufficient access to perform this action.
InternalServer(String)
Internal server error.
Throttling(String)
Throttling limit exceeded error.
Implementations§
Source§impl GetGeneratedPolicyError
impl GetGeneratedPolicyError
pub fn from_response( res: BufferedHttpResponse, ) -> RusotoError<GetGeneratedPolicyError>
Trait Implementations§
Source§impl Debug for GetGeneratedPolicyError
impl Debug for GetGeneratedPolicyError
Source§impl Display for GetGeneratedPolicyError
impl Display for GetGeneratedPolicyError
Source§impl Error for GetGeneratedPolicyError
impl Error for GetGeneratedPolicyError
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 GetGeneratedPolicyError
impl PartialEq for GetGeneratedPolicyError
impl StructuralPartialEq for GetGeneratedPolicyError
Auto Trait Implementations§
impl Freeze for GetGeneratedPolicyError
impl RefUnwindSafe for GetGeneratedPolicyError
impl Send for GetGeneratedPolicyError
impl Sync for GetGeneratedPolicyError
impl Unpin for GetGeneratedPolicyError
impl UnwindSafe for GetGeneratedPolicyError
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