Permanently deletes an XssMatchSet. You can't delete an XssMatchSet
if it's still used in any Rules
or if it still contains any
XssMatchTuple objects.
waf_delete_xss_match_set(XssMatchSetId, ChangeToken)
[required] The XssMatchSetId
of the XssMatchSet that you want to delete.
XssMatchSetId
is returned by CreateXssMatchSet and by
ListXssMatchSets.
[required] The value returned by the most recent call to GetChangeToken.
svc$delete_xss_match_set( XssMatchSetId = "string", ChangeToken = "string" )
If you just want to remove an XssMatchSet
from a Rule
, use
UpdateRule.
To permanently delete an XssMatchSet
from AWS WAF, perform the
following steps:
Update the XssMatchSet
to remove filters, if any. For more
information, see UpdateXssMatchSet.
Use GetChangeToken to get the change token that you provide in the
ChangeToken
parameter of a DeleteXssMatchSet
request.
Submit a DeleteXssMatchSet
request.
# NOT RUN {
# The following example deletes an XSS match set with the ID
# example1ds3t-46da-4fdb-b8d5-abc321j569j5.
# }
# NOT RUN {
svc$delete_xss_match_set(
ChangeToken = "abcd12f2-46da-4fdb-b8d5-fbd4c466928f",
XssMatchSetId = "example1ds3t-46da-4fdb-b8d5-abc321j569j5"
)
# }
# NOT RUN {
# }
Run the code above in your browser using DataLab