pub enum GetAggregateResourceConfigError {
NoSuchConfigurationAggregator(String),
OversizedConfigurationItem(String),
ResourceNotDiscovered(String),
}Expand description
Errors returned by GetAggregateResourceConfig
Variants§
NoSuchConfigurationAggregator(String)
You have specified a configuration aggregator that does not exist.
OversizedConfigurationItem(String)
The configuration item size is outside the allowable range.
ResourceNotDiscovered(String)
You have specified a resource that is either unknown or has not been discovered.
Implementations§
Trait Implementations§
Source§impl Error for GetAggregateResourceConfigError
impl Error for GetAggregateResourceConfigError
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 GetAggregateResourceConfigError
impl PartialEq for GetAggregateResourceConfigError
Source§fn eq(&self, other: &GetAggregateResourceConfigError) -> bool
fn eq(&self, other: &GetAggregateResourceConfigError) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for GetAggregateResourceConfigError
Auto Trait Implementations§
impl Freeze for GetAggregateResourceConfigError
impl RefUnwindSafe for GetAggregateResourceConfigError
impl Send for GetAggregateResourceConfigError
impl Sync for GetAggregateResourceConfigError
impl Unpin for GetAggregateResourceConfigError
impl UnwindSafe for GetAggregateResourceConfigError
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