Class: Aws::WAF::Types::UpdateSizeConstraintSetRequest
- Inherits:
-
Struct
- Object
- Struct
- Aws::WAF::Types::UpdateSizeConstraintSetRequest
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-waf/types.rb
Overview
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#change_token ⇒ String
The value returned by the most recent call to GetChangeToken.
-
#size_constraint_set_id ⇒ String
The ‘SizeConstraintSetId` of the SizeConstraintSet that you want to update.
-
#updates ⇒ Array<Types::SizeConstraintSetUpdate>
An array of ‘SizeConstraintSetUpdate` objects that you want to insert into or delete from a SizeConstraintSet.
Instance Attribute Details
#change_token ⇒ String
The value returned by the most recent call to GetChangeToken.
5620 5621 5622 5623 5624 5625 5626 |
# File 'lib/aws-sdk-waf/types.rb', line 5620 class UpdateSizeConstraintSetRequest < Struct.new( :size_constraint_set_id, :change_token, :updates) SENSITIVE = [] include Aws::Structure end |
#size_constraint_set_id ⇒ String
The ‘SizeConstraintSetId` of the SizeConstraintSet that you want to update. `SizeConstraintSetId` is returned by CreateSizeConstraintSet and by ListSizeConstraintSets.
5620 5621 5622 5623 5624 5625 5626 |
# File 'lib/aws-sdk-waf/types.rb', line 5620 class UpdateSizeConstraintSetRequest < Struct.new( :size_constraint_set_id, :change_token, :updates) SENSITIVE = [] include Aws::Structure end |
#updates ⇒ Array<Types::SizeConstraintSetUpdate>
An array of ‘SizeConstraintSetUpdate` objects that you want to insert into or delete from a SizeConstraintSet. For more information, see the applicable data types:
-
SizeConstraintSetUpdate: Contains ‘Action` and `SizeConstraint`
-
SizeConstraint: Contains ‘FieldToMatch`, `TextTransformation`, `ComparisonOperator`, and `Size`
-
FieldToMatch: Contains ‘Data` and `Type`
5620 5621 5622 5623 5624 5625 5626 |
# File 'lib/aws-sdk-waf/types.rb', line 5620 class UpdateSizeConstraintSetRequest < Struct.new( :size_constraint_set_id, :change_token, :updates) SENSITIVE = [] include Aws::Structure end |