pub enum CreateTargetGroupError {
DuplicateTargetGroupName(String),
InvalidConfigurationRequest(String),
TooManyTargetGroups(String),
}Expand description
Errors returned by CreateTargetGroup
Variants§
DuplicateTargetGroupName(String)
A target group with the specified name already exists.
InvalidConfigurationRequest(String)
The requested configuration is not valid.
TooManyTargetGroups(String)
You've reached the limit on the number of target groups for your AWS account.
Implementations§
Source§impl CreateTargetGroupError
impl CreateTargetGroupError
pub fn from_response( res: BufferedHttpResponse, ) -> RusotoError<CreateTargetGroupError>
Trait Implementations§
Source§impl Debug for CreateTargetGroupError
impl Debug for CreateTargetGroupError
Source§impl Display for CreateTargetGroupError
impl Display for CreateTargetGroupError
Source§impl Error for CreateTargetGroupError
impl Error for CreateTargetGroupError
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 CreateTargetGroupError
impl PartialEq for CreateTargetGroupError
impl StructuralPartialEq for CreateTargetGroupError
Auto Trait Implementations§
impl Freeze for CreateTargetGroupError
impl RefUnwindSafe for CreateTargetGroupError
impl Send for CreateTargetGroupError
impl Sync for CreateTargetGroupError
impl Unpin for CreateTargetGroupError
impl UnwindSafe for CreateTargetGroupError
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