pub enum AttachLoadBalancerToSubnetsError {
AccessPointNotFound(String),
InvalidConfigurationRequest(String),
InvalidSubnet(String),
SubnetNotFound(String),
}Expand description
Errors returned by AttachLoadBalancerToSubnets
Variants§
AccessPointNotFound(String)
The specified load balancer does not exist.
InvalidConfigurationRequest(String)
The requested configuration change is not valid.
InvalidSubnet(String)
The specified VPC has no associated Internet gateway.
SubnetNotFound(String)
One or more of the specified subnets do not exist.
Implementations§
Trait Implementations§
Source§impl Error for AttachLoadBalancerToSubnetsError
impl Error for AttachLoadBalancerToSubnetsError
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 AttachLoadBalancerToSubnetsError
impl PartialEq for AttachLoadBalancerToSubnetsError
Source§fn eq(&self, other: &AttachLoadBalancerToSubnetsError) -> bool
fn eq(&self, other: &AttachLoadBalancerToSubnetsError) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for AttachLoadBalancerToSubnetsError
Auto Trait Implementations§
impl Freeze for AttachLoadBalancerToSubnetsError
impl RefUnwindSafe for AttachLoadBalancerToSubnetsError
impl Send for AttachLoadBalancerToSubnetsError
impl Sync for AttachLoadBalancerToSubnetsError
impl Unpin for AttachLoadBalancerToSubnetsError
impl UnwindSafe for AttachLoadBalancerToSubnetsError
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