pub enum DeleteNotificationRuleError {
ConcurrentModification(String),
LimitExceeded(String),
}
Expand description
Errors returned by DeleteNotificationRule
Variants§
ConcurrentModification(String)
AWS CodeStar Notifications can't complete the request because the resource is being modified by another process. Wait a few minutes and try again.
LimitExceeded(String)
One of the AWS CodeStar Notifications limits has been exceeded. Limits apply to accounts, notification rules, notifications, resources, and targets. For more information, see Limits.
Implementations§
Source§impl DeleteNotificationRuleError
impl DeleteNotificationRuleError
pub fn from_response( res: BufferedHttpResponse, ) -> RusotoError<DeleteNotificationRuleError>
Trait Implementations§
Source§impl Debug for DeleteNotificationRuleError
impl Debug for DeleteNotificationRuleError
Source§impl Error for DeleteNotificationRuleError
impl Error for DeleteNotificationRuleError
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()
impl StructuralPartialEq for DeleteNotificationRuleError
Auto Trait Implementations§
impl Freeze for DeleteNotificationRuleError
impl RefUnwindSafe for DeleteNotificationRuleError
impl Send for DeleteNotificationRuleError
impl Sync for DeleteNotificationRuleError
impl Unpin for DeleteNotificationRuleError
impl UnwindSafe for DeleteNotificationRuleError
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