pub enum DescribeEnvironmentHealthError {
ElasticBeanstalkService(String),
InvalidRequest(String),
}
Expand description
Errors returned by DescribeEnvironmentHealth
Variants§
ElasticBeanstalkService(String)
A generic service exception has occurred.
InvalidRequest(String)
One or more input parameters is not valid. Please correct the input parameters and try the operation again.
Implementations§
Trait Implementations§
Source§impl Error for DescribeEnvironmentHealthError
impl Error for DescribeEnvironmentHealthError
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 DescribeEnvironmentHealthError
impl PartialEq for DescribeEnvironmentHealthError
Source§fn eq(&self, other: &DescribeEnvironmentHealthError) -> bool
fn eq(&self, other: &DescribeEnvironmentHealthError) -> bool
Tests for
self
and other
values to be equal, and is used by ==
.impl StructuralPartialEq for DescribeEnvironmentHealthError
Auto Trait Implementations§
impl Freeze for DescribeEnvironmentHealthError
impl RefUnwindSafe for DescribeEnvironmentHealthError
impl Send for DescribeEnvironmentHealthError
impl Sync for DescribeEnvironmentHealthError
impl Unpin for DescribeEnvironmentHealthError
impl UnwindSafe for DescribeEnvironmentHealthError
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