Class: Aws::WAFV2::Types::FieldToProtect

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

Overview

Specifies a field type and keys to protect in stored web request data. This is part of the data protection configuration for a web ACL.

Constant Summary collapse

SENSITIVE =
[]

Instance Attribute Summary collapse

Instance Attribute Details

#field_keysArray<String>

Specifies the keys to protect for the specified field type. If you don’t specify any key, then all keys for the field type are protected.

Returns:

  • (Array<String>)


2686
2687
2688
2689
2690
2691
# File 'lib/aws-sdk-wafv2/types.rb', line 2686

class FieldToProtect < Struct.new(
  :field_type,
  :field_keys)
  SENSITIVE = []
  include Aws::Structure
end

#field_typeString

Specifies the web request component type to protect.

Returns:

  • (String)


2686
2687
2688
2689
2690
2691
# File 'lib/aws-sdk-wafv2/types.rb', line 2686

class FieldToProtect < Struct.new(
  :field_type,
  :field_keys)
  SENSITIVE = []
  include Aws::Structure
end