pub enum BatchGetOnPremisesInstancesError {
BatchLimitExceeded(String),
InstanceNameRequired(String),
InvalidInstanceName(String),
}
Expand description
Errors returned by BatchGetOnPremisesInstances
Variants§
BatchLimitExceeded(String)
The maximum number of names or IDs allowed for this request (100) was exceeded.
InstanceNameRequired(String)
An on-premises instance name was not specified.
InvalidInstanceName(String)
The on-premises instance name was specified in an invalid format.
Implementations§
Trait Implementations§
Source§impl Error for BatchGetOnPremisesInstancesError
impl Error for BatchGetOnPremisesInstancesError
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 BatchGetOnPremisesInstancesError
impl PartialEq for BatchGetOnPremisesInstancesError
Source§fn eq(&self, other: &BatchGetOnPremisesInstancesError) -> bool
fn eq(&self, other: &BatchGetOnPremisesInstancesError) -> bool
Tests for
self
and other
values to be equal, and is used by ==
.impl StructuralPartialEq for BatchGetOnPremisesInstancesError
Auto Trait Implementations§
impl Freeze for BatchGetOnPremisesInstancesError
impl RefUnwindSafe for BatchGetOnPremisesInstancesError
impl Send for BatchGetOnPremisesInstancesError
impl Sync for BatchGetOnPremisesInstancesError
impl Unpin for BatchGetOnPremisesInstancesError
impl UnwindSafe for BatchGetOnPremisesInstancesError
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