pub enum DescribeConfigRulesError {
InvalidNextToken(String),
NoSuchConfigRule(String),
}Expand description
Errors returned by DescribeConfigRules
Variants§
InvalidNextToken(String)
The specified next token is invalid. Specify the nextToken string that was returned in the previous response to get the next page of results.
NoSuchConfigRule(String)
One or more AWS Config rules in the request are invalid. Verify that the rule names are correct and try again.
Implementations§
Source§impl DescribeConfigRulesError
impl DescribeConfigRulesError
pub fn from_response( res: BufferedHttpResponse, ) -> RusotoError<DescribeConfigRulesError>
Trait Implementations§
Source§impl Debug for DescribeConfigRulesError
impl Debug for DescribeConfigRulesError
Source§impl Display for DescribeConfigRulesError
impl Display for DescribeConfigRulesError
Source§impl Error for DescribeConfigRulesError
impl Error for DescribeConfigRulesError
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 DescribeConfigRulesError
impl PartialEq for DescribeConfigRulesError
impl StructuralPartialEq for DescribeConfigRulesError
Auto Trait Implementations§
impl Freeze for DescribeConfigRulesError
impl RefUnwindSafe for DescribeConfigRulesError
impl Send for DescribeConfigRulesError
impl Sync for DescribeConfigRulesError
impl Unpin for DescribeConfigRulesError
impl UnwindSafe for DescribeConfigRulesError
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