pub enum CreateRegexMatchSetError {
WAFDisallowedName(String),
WAFInternalError(String),
WAFLimitsExceeded(String),
WAFStaleData(String),
}Expand description
Errors returned by CreateRegexMatchSet
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 CreateRegexMatchSetError
impl CreateRegexMatchSetError
pub fn from_response( res: BufferedHttpResponse, ) -> RusotoError<CreateRegexMatchSetError>
Trait Implementations§
Source§impl Debug for CreateRegexMatchSetError
impl Debug for CreateRegexMatchSetError
Source§impl Display for CreateRegexMatchSetError
impl Display for CreateRegexMatchSetError
Source§impl Error for CreateRegexMatchSetError
impl Error for CreateRegexMatchSetError
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 CreateRegexMatchSetError
impl PartialEq for CreateRegexMatchSetError
impl StructuralPartialEq for CreateRegexMatchSetError
Auto Trait Implementations§
impl Freeze for CreateRegexMatchSetError
impl RefUnwindSafe for CreateRegexMatchSetError
impl Send for CreateRegexMatchSetError
impl Sync for CreateRegexMatchSetError
impl Unpin for CreateRegexMatchSetError
impl UnwindSafe for CreateRegexMatchSetError
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