Class: Aws::WAF::Types::UpdateXssMatchSetRequest
- Inherits:
-
Struct
- Object
- Struct
- Aws::WAF::Types::UpdateXssMatchSetRequest
- Defined in:
- gems/aws-sdk-waf/lib/aws-sdk-waf/types.rb
Overview
When making an API call, you may pass UpdateXssMatchSetRequest data as a hash:
{
xss_match_set_id: "ResourceId", # required
change_token: "ChangeToken", # required
updates: [ # required
{
action: "INSERT", # required, accepts INSERT, DELETE
xss_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
},
},
],
}
A request to update an XssMatchSet.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#change_token ⇒ String
The value returned by the most recent call to GetChangeToken.
-
#updates ⇒ Array<Types::XssMatchSetUpdate>
An array of
XssMatchSetUpdate
objects that you want to insert into or delete from an XssMatchSet. -
#xss_match_set_id ⇒ String
The
XssMatchSetId
of theXssMatchSet
that you want to update.
Instance Attribute Details
#change_token ⇒ String
The value returned by the most recent call to GetChangeToken.
6846 6847 6848 6849 6850 6851 6852 |
# File 'gems/aws-sdk-waf/lib/aws-sdk-waf/types.rb', line 6846 class UpdateXssMatchSetRequest < Struct.new( :xss_match_set_id, :change_token, :updates) SENSITIVE = [] include Aws::Structure end |
#updates ⇒ Array<Types::XssMatchSetUpdate>
An array of XssMatchSetUpdate
objects that you want to insert into
or delete from an XssMatchSet. For more information, see the
applicable data types:
XssMatchSetUpdate: Contains
Action
andXssMatchTuple
XssMatchTuple: Contains
FieldToMatch
andTextTransformation
FieldToMatch: Contains
Data
andType
6846 6847 6848 6849 6850 6851 6852 |
# File 'gems/aws-sdk-waf/lib/aws-sdk-waf/types.rb', line 6846 class UpdateXssMatchSetRequest < Struct.new( :xss_match_set_id, :change_token, :updates) SENSITIVE = [] include Aws::Structure end |
#xss_match_set_id ⇒ String
The XssMatchSetId
of the XssMatchSet
that you want to update.
XssMatchSetId
is returned by CreateXssMatchSet and by
ListXssMatchSets.
6846 6847 6848 6849 6850 6851 6852 |
# File 'gems/aws-sdk-waf/lib/aws-sdk-waf/types.rb', line 6846 class UpdateXssMatchSetRequest < Struct.new( :xss_match_set_id, :change_token, :updates) SENSITIVE = [] include Aws::Structure end |