paws.security.identity (version 0.1.0)

wafregional_delete_xss_match_set: Permanently deletes an XssMatchSet

Description

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.

Usage

wafregional_delete_xss_match_set(XssMatchSetId, ChangeToken)

Arguments

XssMatchSetId

[required] The XssMatchSetId of the XssMatchSet that you want to delete. XssMatchSetId is returned by CreateXssMatchSet and by ListXssMatchSets.

ChangeToken

[required] The value returned by the most recent call to GetChangeToken.

Request syntax

svc$delete_xss_match_set(
  XssMatchSetId = "string",
  ChangeToken = "string"
)

Details

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:

  1. Update the XssMatchSet to remove filters, if any. For more information, see UpdateXssMatchSet.

  2. Use GetChangeToken to get the change token that you provide in the ChangeToken parameter of a DeleteXssMatchSet request.

  3. Submit a DeleteXssMatchSet request.

Examples

Run this code
# 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 DataCamp Workspace