Class: Aws::WAF::Types::UpdateByteMatchSetRequest

Inherits:
Struct
  • Object
show all
Defined in:
gems/aws-sdk-waf/lib/aws-sdk-waf/types.rb

Overview

Constant Summary collapse

SENSITIVE =
[]

Instance Attribute Summary collapse

Instance Attribute Details

#byte_match_set_idString

The ByteMatchSetId of the ByteMatchSet that you want to update. ByteMatchSetId is returned by CreateByteMatchSet and by ListByteMatchSets.

Returns:

  • (String)


5261
5262
5263
5264
5265
5266
5267
# File 'gems/aws-sdk-waf/lib/aws-sdk-waf/types.rb', line 5261

class UpdateByteMatchSetRequest < Struct.new(
  :byte_match_set_id,
  :change_token,
  :updates)
  SENSITIVE = []
  include Aws::Structure
end

#change_tokenString

The value returned by the most recent call to GetChangeToken.

Returns:

  • (String)


5261
5262
5263
5264
5265
5266
5267
# File 'gems/aws-sdk-waf/lib/aws-sdk-waf/types.rb', line 5261

class UpdateByteMatchSetRequest < Struct.new(
  :byte_match_set_id,
  :change_token,
  :updates)
  SENSITIVE = []
  include Aws::Structure
end

#updatesArray<Types::ByteMatchSetUpdate>

An array of ByteMatchSetUpdate objects that you want to insert into or delete from a ByteMatchSet. For more information, see the applicable data types:

  • ByteMatchSetUpdate: Contains Action and ByteMatchTuple

  • ByteMatchTuple: Contains FieldToMatch, PositionalConstraint, TargetString, and TextTransformation

  • FieldToMatch: Contains Data and Type

Returns:



5261
5262
5263
5264
5265
5266
5267
# File 'gems/aws-sdk-waf/lib/aws-sdk-waf/types.rb', line 5261

class UpdateByteMatchSetRequest < Struct.new(
  :byte_match_set_id,
  :change_token,
  :updates)
  SENSITIVE = []
  include Aws::Structure
end