pub enum UpdateRegexPatternSetError {
WAFInternalError(String),
WAFInvalidAccount(String),
WAFInvalidOperation(String),
WAFInvalidRegexPattern(String),
WAFLimitsExceeded(String),
WAFNonexistentContainer(String),
WAFNonexistentItem(String),
WAFStaleData(String),
}Expand description
Errors returned by UpdateRegexPatternSet
Variants§
WAFInternalError(String)
The operation failed because of a system problem, even though the request was valid. Retry your request.
WAFInvalidAccount(String)
The operation failed because you tried to create, update, or delete an object by using an invalid account identifier.
WAFInvalidOperation(String)
The operation failed because there was nothing to do. For example:
-
You tried to remove a
Rulefrom aWebACL, but theRuleisn't in the specifiedWebACL. -
You tried to remove an IP address from an
IPSet, but the IP address isn't in the specifiedIPSet. -
You tried to remove a
ByteMatchTuplefrom aByteMatchSet, but theByteMatchTupleisn't in the specifiedWebACL. -
You tried to add a
Ruleto aWebACL, but theRulealready exists in the specifiedWebACL. -
You tried to add a
ByteMatchTupleto aByteMatchSet, but theByteMatchTuplealready exists in the specifiedWebACL.
WAFInvalidRegexPattern(String)
The regular expression (regex) you specified in RegexPatternString is invalid.
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.
WAFNonexistentContainer(String)
The operation failed because you tried to add an object to or delete an object from another object that doesn't exist. For example:
-
You tried to add a
Ruleto or delete aRulefrom aWebACLthat doesn't exist. -
You tried to add a
ByteMatchSetto or delete aByteMatchSetfrom aRulethat doesn't exist. -
You tried to add an IP address to or delete an IP address from an
IPSetthat doesn't exist. -
You tried to add a
ByteMatchTupleto or delete aByteMatchTuplefrom aByteMatchSetthat doesn't exist.
WAFNonexistentItem(String)
The operation failed because the referenced object doesn't exist.
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.