Class: Aws::WAF::Types::UpdateRegexMatchSetRequest
- Inherits:
-
Struct
- Object
- Struct
- Aws::WAF::Types::UpdateRegexMatchSetRequest
- Defined in:
- gems/aws-sdk-waf/lib/aws-sdk-waf/types.rb
Overview
Note:
When making an API call, you may pass UpdateRegexMatchSetRequest data as a hash:
{
regex_match_set_id: "ResourceId", # required
updates: [ # required
{
action: "INSERT", # required, accepts INSERT, DELETE
regex_match_tuple: { # required
field_to_match: { # required
type: "URI", # required, accepts URI, QUERY_STRING, HEADER, METHOD, BODY, SINGLE_QUERY_ARG, ALL_QUERY_ARGS
data: "MatchFieldData",
},
text_transformation: "NONE", # required, accepts NONE, COMPRESS_WHITE_SPACE, HTML_ENTITY_DECODE, LOWERCASE, CMD_LINE, URL_DECODE
regex_pattern_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 update. -
#updates ⇒ Array<Types::RegexMatchSetUpdate>
An array of
RegexMatchSetUpdate
objects that you want to insert into or delete from a RegexMatchSet.
Instance Attribute Details
#change_token ⇒ String
The value returned by the most recent call to GetChangeToken.
6352 6353 6354 6355 6356 6357 6358 |
# File 'gems/aws-sdk-waf/lib/aws-sdk-waf/types.rb', line 6352 class UpdateRegexMatchSetRequest < Struct.new( :regex_match_set_id, :updates, :change_token) SENSITIVE = [] include Aws::Structure end |
#regex_match_set_id ⇒ String
The RegexMatchSetId
of the RegexMatchSet that you want to update.
RegexMatchSetId
is returned by CreateRegexMatchSet and by
ListRegexMatchSets.
6352 6353 6354 6355 6356 6357 6358 |
# File 'gems/aws-sdk-waf/lib/aws-sdk-waf/types.rb', line 6352 class UpdateRegexMatchSetRequest < Struct.new( :regex_match_set_id, :updates, :change_token) SENSITIVE = [] include Aws::Structure end |
#updates ⇒ Array<Types::RegexMatchSetUpdate>
An array of RegexMatchSetUpdate
objects that you want to insert
into or delete from a RegexMatchSet. For more information, see
RegexMatchTuple.
6352 6353 6354 6355 6356 6357 6358 |
# File 'gems/aws-sdk-waf/lib/aws-sdk-waf/types.rb', line 6352 class UpdateRegexMatchSetRequest < Struct.new( :regex_match_set_id, :updates, :change_token) SENSITIVE = [] include Aws::Structure end |