Class: Aws::ObservabilityAdmin::Types::FieldToMatch
- Inherits:
-
Struct
- Object
- Struct
- Aws::ObservabilityAdmin::Types::FieldToMatch
- Defined in:
- gems/aws-sdk-observabilityadmin/lib/aws-sdk-observabilityadmin/types.rb
Overview
Specifies a field in the request to redact from WAF logs, such as headers, query parameters, or body content.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#method ⇒ String
Redacts the HTTP method from WAF logs.
-
#query_string ⇒ String
Redacts the entire query string from WAF logs.
-
#single_header ⇒ Types::SingleHeader
Redacts a specific header field by name from WAF logs.
-
#uri_path ⇒ String
Redacts the URI path from WAF logs.
Instance Attribute Details
#method ⇒ String
Redacts the HTTP method from WAF logs.
744 745 746 747 748 749 750 751 |
# File 'gems/aws-sdk-observabilityadmin/lib/aws-sdk-observabilityadmin/types.rb', line 744 class FieldToMatch < Struct.new( :single_header, :uri_path, :query_string, :method) SENSITIVE = [] include Aws::Structure end |
#query_string ⇒ String
Redacts the entire query string from WAF logs.
744 745 746 747 748 749 750 751 |
# File 'gems/aws-sdk-observabilityadmin/lib/aws-sdk-observabilityadmin/types.rb', line 744 class FieldToMatch < Struct.new( :single_header, :uri_path, :query_string, :method) SENSITIVE = [] include Aws::Structure end |
#single_header ⇒ Types::SingleHeader
Redacts a specific header field by name from WAF logs.
744 745 746 747 748 749 750 751 |
# File 'gems/aws-sdk-observabilityadmin/lib/aws-sdk-observabilityadmin/types.rb', line 744 class FieldToMatch < Struct.new( :single_header, :uri_path, :query_string, :method) SENSITIVE = [] include Aws::Structure end |
#uri_path ⇒ String
Redacts the URI path from WAF logs.
744 745 746 747 748 749 750 751 |
# File 'gems/aws-sdk-observabilityadmin/lib/aws-sdk-observabilityadmin/types.rb', line 744 class FieldToMatch < Struct.new( :single_header, :uri_path, :query_string, :method) SENSITIVE = [] include Aws::Structure end |