pub enum GetOpsSummaryError {
InternalServerError(String),
InvalidAggregator(String),
InvalidFilter(String),
InvalidNextToken(String),
InvalidTypeName(String),
ResourceDataSyncNotFound(String),
}Expand description
Errors returned by GetOpsSummary
Variants§
InternalServerError(String)
An error occurred on the server side.
InvalidAggregator(String)
The specified aggregator is not valid for inventory groups. Verify that the aggregator uses a valid inventory type such as AWS:Application or AWS:InstanceInformation.
InvalidFilter(String)
The filter name is not valid. Verify the you entered the correct name and try again.
InvalidNextToken(String)
The specified token is not valid.
InvalidTypeName(String)
The parameter type name is not valid.
ResourceDataSyncNotFound(String)
The specified sync name was not found.
Implementations§
Source§impl GetOpsSummaryError
impl GetOpsSummaryError
pub fn from_response( res: BufferedHttpResponse, ) -> RusotoError<GetOpsSummaryError>
Trait Implementations§
Source§impl Debug for GetOpsSummaryError
impl Debug for GetOpsSummaryError
Source§impl Display for GetOpsSummaryError
impl Display for GetOpsSummaryError
Source§impl Error for GetOpsSummaryError
impl Error for GetOpsSummaryError
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 GetOpsSummaryError
impl PartialEq for GetOpsSummaryError
impl StructuralPartialEq for GetOpsSummaryError
Auto Trait Implementations§
impl Freeze for GetOpsSummaryError
impl RefUnwindSafe for GetOpsSummaryError
impl Send for GetOpsSummaryError
impl Sync for GetOpsSummaryError
impl Unpin for GetOpsSummaryError
impl UnwindSafe for GetOpsSummaryError
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