pub enum StartQueryError {
InvalidParameter(String),
LimitExceeded(String),
MalformedQuery(String),
ResourceNotFound(String),
ServiceUnavailable(String),
}Expand description
Errors returned by StartQuery
Variants§
InvalidParameter(String)
A parameter is specified incorrectly.
LimitExceeded(String)
You have reached the maximum number of resources that can be created.
MalformedQuery(String)
The query string is not valid. Details about this error are displayed in a QueryCompileError object. For more information, see QueryCompileError"/>.
For more information about valid query syntax, see CloudWatch Logs Insights Query Syntax.
ResourceNotFound(String)
The specified resource does not exist.
The service cannot complete the request.
Implementations§
Source§impl StartQueryError
impl StartQueryError
pub fn from_response(res: BufferedHttpResponse) -> RusotoError<StartQueryError>
Trait Implementations§
Source§impl Debug for StartQueryError
impl Debug for StartQueryError
Source§impl Display for StartQueryError
impl Display for StartQueryError
Source§impl Error for StartQueryError
impl Error for StartQueryError
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 StartQueryError
impl PartialEq for StartQueryError
impl StructuralPartialEq for StartQueryError
Auto Trait Implementations§
impl Freeze for StartQueryError
impl RefUnwindSafe for StartQueryError
impl Send for StartQueryError
impl Sync for StartQueryError
impl Unpin for StartQueryError
impl UnwindSafe for StartQueryError
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