Class: Aws::WAFV2::Types::JsonMatchPattern

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

Overview

The patterns to look for in the JSON body. WAF inspects the results of these pattern matches against the rule inspection criteria. This is used with the FieldToMatch option JsonBody.

Constant Summary collapse

SENSITIVE =
[]

Instance Attribute Summary collapse

Instance Attribute Details

#allTypes::All

Match all of the elements. See also MatchScope in JsonBody.

You must specify either this setting or the IncludedPaths setting, but not both.

Returns:

  • (Types::All)


4153
4154
4155
4156
4157
4158
# File 'gems/aws-sdk-wafv2/lib/aws-sdk-wafv2/types.rb', line 4153

class JsonMatchPattern < Struct.new(
  :all,
  :included_paths)
  SENSITIVE = []
  include Aws::Structure
end

#included_pathsArray<String>

Match only the specified include paths. See also MatchScope in JsonBody.

Provide the include paths using JSON Pointer syntax. For example, "IncludedPaths": ["/dogs/0/name", "/dogs/1/name"]. For information about this syntax, see the Internet Engineering Task Force (IETF) documentation JavaScript Object Notation (JSON) Pointer.

You must specify either this setting or the All setting, but not both.

Don't use this option to include all paths. Instead, use the All setting.

Returns:

  • (Array<String>)


4153
4154
4155
4156
4157
4158
# File 'gems/aws-sdk-wafv2/lib/aws-sdk-wafv2/types.rb', line 4153

class JsonMatchPattern < Struct.new(
  :all,
  :included_paths)
  SENSITIVE = []
  include Aws::Structure
end