pub enum GetResourceConfigHistoryError {
InvalidLimit(String),
InvalidNextToken(String),
InvalidTimeRange(String),
NoAvailableConfigurationRecorder(String),
ResourceNotDiscovered(String),
}Expand description
Errors returned by GetResourceConfigHistory
Variants§
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.
InvalidTimeRange(String)
The specified time range is not valid. The earlier time is not chronologically before the later time.
NoAvailableConfigurationRecorder(String)
There are no configuration recorders available to provide the role needed to describe your resources. Create a configuration recorder.
ResourceNotDiscovered(String)
You have specified a resource that is either unknown or has not been discovered.
Implementations§
Trait Implementations§
Source§impl Error for GetResourceConfigHistoryError
impl Error for GetResourceConfigHistoryError
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 GetResourceConfigHistoryError
impl PartialEq for GetResourceConfigHistoryError
Source§fn eq(&self, other: &GetResourceConfigHistoryError) -> bool
fn eq(&self, other: &GetResourceConfigHistoryError) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for GetResourceConfigHistoryError
Auto Trait Implementations§
impl Freeze for GetResourceConfigHistoryError
impl RefUnwindSafe for GetResourceConfigHistoryError
impl Send for GetResourceConfigHistoryError
impl Sync for GetResourceConfigHistoryError
impl Unpin for GetResourceConfigHistoryError
impl UnwindSafe for GetResourceConfigHistoryError
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