pub enum CreateCustomRoutingEndpointGroupError {
AcceleratorNotFound(String),
AccessDenied(String),
EndpointGroupAlreadyExists(String),
InternalServiceError(String),
InvalidArgument(String),
InvalidPortRange(String),
LimitExceeded(String),
ListenerNotFound(String),
}
Expand description
Errors returned by CreateCustomRoutingEndpointGroup
Variants§
AcceleratorNotFound(String)
The accelerator that you specified doesn't exist.
AccessDenied(String)
You don't have access permission.
EndpointGroupAlreadyExists(String)
The endpoint group that you specified already exists.
InternalServiceError(String)
There was an internal error for AWS Global Accelerator.
InvalidArgument(String)
An argument that you specified is invalid.
InvalidPortRange(String)
The port numbers that you specified are not valid numbers or are not unique for this accelerator.
LimitExceeded(String)
Processing your request would cause you to exceed an AWS Global Accelerator limit.
ListenerNotFound(String)
The listener that you specified doesn't exist.
Implementations§
Trait Implementations§
Source§impl Error for CreateCustomRoutingEndpointGroupError
impl Error for CreateCustomRoutingEndpointGroupError
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 CreateCustomRoutingEndpointGroupError
impl PartialEq for CreateCustomRoutingEndpointGroupError
Source§fn eq(&self, other: &CreateCustomRoutingEndpointGroupError) -> bool
fn eq(&self, other: &CreateCustomRoutingEndpointGroupError) -> bool
Tests for
self
and other
values to be equal, and is used by ==
.impl StructuralPartialEq for CreateCustomRoutingEndpointGroupError
Auto Trait Implementations§
impl Freeze for CreateCustomRoutingEndpointGroupError
impl RefUnwindSafe for CreateCustomRoutingEndpointGroupError
impl Send for CreateCustomRoutingEndpointGroupError
impl Sync for CreateCustomRoutingEndpointGroupError
impl Unpin for CreateCustomRoutingEndpointGroupError
impl UnwindSafe for CreateCustomRoutingEndpointGroupError
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