pub enum AddCustomRoutingEndpointsError {
AccessDenied(String),
Conflict(String),
EndpointAlreadyExists(String),
EndpointGroupNotFound(String),
InternalServiceError(String),
InvalidArgument(String),
LimitExceeded(String),
}
Expand description
Errors returned by AddCustomRoutingEndpoints
Variants§
AccessDenied(String)
You don't have access permission.
Conflict(String)
You can't use both of those options.
EndpointAlreadyExists(String)
The endpoint that you specified doesn't exist.
EndpointGroupNotFound(String)
The endpoint group that you specified doesn't exist.
InternalServiceError(String)
There was an internal error for AWS Global Accelerator.
InvalidArgument(String)
An argument that you specified is invalid.
LimitExceeded(String)
Processing your request would cause you to exceed an AWS Global Accelerator limit.
Implementations§
Trait Implementations§
Source§impl Error for AddCustomRoutingEndpointsError
impl Error for AddCustomRoutingEndpointsError
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 AddCustomRoutingEndpointsError
impl PartialEq for AddCustomRoutingEndpointsError
Source§fn eq(&self, other: &AddCustomRoutingEndpointsError) -> bool
fn eq(&self, other: &AddCustomRoutingEndpointsError) -> bool
Tests for
self
and other
values to be equal, and is used by ==
.impl StructuralPartialEq for AddCustomRoutingEndpointsError
Auto Trait Implementations§
impl Freeze for AddCustomRoutingEndpointsError
impl RefUnwindSafe for AddCustomRoutingEndpointsError
impl Send for AddCustomRoutingEndpointsError
impl Sync for AddCustomRoutingEndpointsError
impl Unpin for AddCustomRoutingEndpointsError
impl UnwindSafe for AddCustomRoutingEndpointsError
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