pub enum CreateEndpointGroupError {
AcceleratorNotFound(String),
AccessDenied(String),
EndpointGroupAlreadyExists(String),
InternalServiceError(String),
InvalidArgument(String),
LimitExceeded(String),
ListenerNotFound(String),
}Expand description
Errors returned by CreateEndpointGroup
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.
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§
Source§impl CreateEndpointGroupError
impl CreateEndpointGroupError
pub fn from_response( res: BufferedHttpResponse, ) -> RusotoError<CreateEndpointGroupError>
Trait Implementations§
Source§impl Debug for CreateEndpointGroupError
impl Debug for CreateEndpointGroupError
Source§impl Display for CreateEndpointGroupError
impl Display for CreateEndpointGroupError
Source§impl Error for CreateEndpointGroupError
impl Error for CreateEndpointGroupError
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 CreateEndpointGroupError
impl PartialEq for CreateEndpointGroupError
impl StructuralPartialEq for CreateEndpointGroupError
Auto Trait Implementations§
impl Freeze for CreateEndpointGroupError
impl RefUnwindSafe for CreateEndpointGroupError
impl Send for CreateEndpointGroupError
impl Sync for CreateEndpointGroupError
impl Unpin for CreateEndpointGroupError
impl UnwindSafe for CreateEndpointGroupError
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