pub enum CreateLoadBalancerError {
Show 13 variants
AllocationIdNotFound(String),
AvailabilityZoneNotSupported(String),
DuplicateLoadBalancerName(String),
DuplicateTagKeys(String),
InvalidConfigurationRequest(String),
InvalidScheme(String),
InvalidSecurityGroup(String),
InvalidSubnet(String),
OperationNotPermitted(String),
ResourceInUse(String),
SubnetNotFound(String),
TooManyLoadBalancers(String),
TooManyTags(String),
}Expand description
Errors returned by CreateLoadBalancer
Variants§
AllocationIdNotFound(String)
The specified allocation ID does not exist.
AvailabilityZoneNotSupported(String)
The specified Availability Zone is not supported.
DuplicateLoadBalancerName(String)
A load balancer with the specified name already exists.
DuplicateTagKeys(String)
A tag key was specified more than once.
InvalidConfigurationRequest(String)
The requested configuration is not valid.
InvalidScheme(String)
The requested scheme is not valid.
InvalidSecurityGroup(String)
The specified security group does not exist.
InvalidSubnet(String)
The specified subnet is out of available addresses.
OperationNotPermitted(String)
This operation is not allowed.
ResourceInUse(String)
A specified resource is in use.
SubnetNotFound(String)
The specified subnet does not exist.
TooManyLoadBalancers(String)
You've reached the limit on the number of load balancers for your AWS account.
TooManyTags(String)
You've reached the limit on the number of tags per load balancer.
Implementations§
Source§impl CreateLoadBalancerError
impl CreateLoadBalancerError
pub fn from_response( res: BufferedHttpResponse, ) -> RusotoError<CreateLoadBalancerError>
Trait Implementations§
Source§impl Debug for CreateLoadBalancerError
impl Debug for CreateLoadBalancerError
Source§impl Display for CreateLoadBalancerError
impl Display for CreateLoadBalancerError
Source§impl Error for CreateLoadBalancerError
impl Error for CreateLoadBalancerError
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 CreateLoadBalancerError
impl PartialEq for CreateLoadBalancerError
impl StructuralPartialEq for CreateLoadBalancerError
Auto Trait Implementations§
impl Freeze for CreateLoadBalancerError
impl RefUnwindSafe for CreateLoadBalancerError
impl Send for CreateLoadBalancerError
impl Sync for CreateLoadBalancerError
impl Unpin for CreateLoadBalancerError
impl UnwindSafe for CreateLoadBalancerError
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