pub enum PutWebhookError {
ConcurrentModification(String),
InvalidTags(String),
InvalidWebhookAuthenticationParameters(String),
InvalidWebhookFilterPattern(String),
LimitExceeded(String),
PipelineNotFound(String),
TooManyTags(String),
}
Expand description
Errors returned by PutWebhook
Variants§
ConcurrentModification(String)
Unable to modify the tag due to a simultaneous update request.
InvalidTags(String)
The specified resource tags are invalid.
InvalidWebhookAuthenticationParameters(String)
The specified authentication type is in an invalid format.
InvalidWebhookFilterPattern(String)
The specified event filter rule is in an invalid format.
LimitExceeded(String)
The number of pipelines associated with the AWS account has exceeded the limit allowed for the account.
PipelineNotFound(String)
The pipeline was specified in an invalid format or cannot be found.
TooManyTags(String)
The tags limit for a resource has been exceeded.
Implementations§
Source§impl PutWebhookError
impl PutWebhookError
pub fn from_response(res: BufferedHttpResponse) -> RusotoError<PutWebhookError>
Trait Implementations§
Source§impl Debug for PutWebhookError
impl Debug for PutWebhookError
Source§impl Display for PutWebhookError
impl Display for PutWebhookError
Source§impl Error for PutWebhookError
impl Error for PutWebhookError
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 PutWebhookError
impl PartialEq for PutWebhookError
impl StructuralPartialEq for PutWebhookError
Auto Trait Implementations§
impl Freeze for PutWebhookError
impl RefUnwindSafe for PutWebhookError
impl Send for PutWebhookError
impl Sync for PutWebhookError
impl Unpin for PutWebhookError
impl UnwindSafe for PutWebhookError
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