pub enum CreateRegexPatternSetError {
WAFDisallowedName(String),
WAFInternalError(String),
WAFLimitsExceeded(String),
WAFStaleData(String),
}Expand description
Errors returned by CreateRegexPatternSet
Variants§
WAFDisallowedName(String)
The name specified is invalid.
WAFInternalError(String)
The operation failed because of a system problem, even though the request was valid. Retry your request.
WAFLimitsExceeded(String)
The operation exceeds a resource limit, for example, the maximum number of WebACL objects that you can create for an AWS account. For more information, see Limits in the AWS WAF Developer Guide.
WAFStaleData(String)
The operation failed because you tried to create, update, or delete an object by using a change token that has already been used.
Implementations§
Source§impl CreateRegexPatternSetError
impl CreateRegexPatternSetError
pub fn from_response( res: BufferedHttpResponse, ) -> RusotoError<CreateRegexPatternSetError>
Trait Implementations§
Source§impl Debug for CreateRegexPatternSetError
impl Debug for CreateRegexPatternSetError
Source§impl Display for CreateRegexPatternSetError
impl Display for CreateRegexPatternSetError
Source§impl Error for CreateRegexPatternSetError
impl Error for CreateRegexPatternSetError
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 CreateRegexPatternSetError
Auto Trait Implementations§
impl Freeze for CreateRegexPatternSetError
impl RefUnwindSafe for CreateRegexPatternSetError
impl Send for CreateRegexPatternSetError
impl Sync for CreateRegexPatternSetError
impl Unpin for CreateRegexPatternSetError
impl UnwindSafe for CreateRegexPatternSetError
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