pub enum SelectAggregateResourceConfigError {
InvalidExpression(String),
InvalidLimit(String),
InvalidNextToken(String),
NoSuchConfigurationAggregator(String),
}Expand description
Errors returned by SelectAggregateResourceConfig
Variants§
InvalidExpression(String)
The syntax of the query is incorrect.
InvalidLimit(String)
The specified limit is outside the allowable range.
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.
NoSuchConfigurationAggregator(String)
You have specified a configuration aggregator that does not exist.
Implementations§
Trait Implementations§
Source§impl Error for SelectAggregateResourceConfigError
impl Error for SelectAggregateResourceConfigError
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 SelectAggregateResourceConfigError
impl PartialEq for SelectAggregateResourceConfigError
Source§fn eq(&self, other: &SelectAggregateResourceConfigError) -> bool
fn eq(&self, other: &SelectAggregateResourceConfigError) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for SelectAggregateResourceConfigError
Auto Trait Implementations§
impl Freeze for SelectAggregateResourceConfigError
impl RefUnwindSafe for SelectAggregateResourceConfigError
impl Send for SelectAggregateResourceConfigError
impl Sync for SelectAggregateResourceConfigError
impl Unpin for SelectAggregateResourceConfigError
impl UnwindSafe for SelectAggregateResourceConfigError
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