Class: Aws::WAF::Types::DeleteRegexMatchSetRequest
- Inherits:
-
Struct
- Object
- Struct
- Aws::WAF::Types::DeleteRegexMatchSetRequest
- Defined in:
- gems/aws-sdk-waf/lib/aws-sdk-waf/types.rb
Overview
Note:
When making an API call, you may pass DeleteRegexMatchSetRequest data as a hash:
{
regex_match_set_id: "ResourceId", # required
change_token: "ChangeToken", # required
}
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#change_token ⇒ String
The value returned by the most recent call to GetChangeToken.
-
#regex_match_set_id ⇒ String
The
RegexMatchSetId
of the RegexMatchSet that you want to delete.
Instance Attribute Details
#change_token ⇒ String
The value returned by the most recent call to GetChangeToken.
1539 1540 1541 1542 1543 1544 |
# File 'gems/aws-sdk-waf/lib/aws-sdk-waf/types.rb', line 1539 class DeleteRegexMatchSetRequest < Struct.new( :regex_match_set_id, :change_token) SENSITIVE = [] include Aws::Structure end |
#regex_match_set_id ⇒ String
The RegexMatchSetId
of the RegexMatchSet that you want to delete.
RegexMatchSetId
is returned by CreateRegexMatchSet and by
ListRegexMatchSets.
1539 1540 1541 1542 1543 1544 |
# File 'gems/aws-sdk-waf/lib/aws-sdk-waf/types.rb', line 1539 class DeleteRegexMatchSetRequest < Struct.new( :regex_match_set_id, :change_token) SENSITIVE = [] include Aws::Structure end |