@Stability(value=Stable)
public static interface CfnLoggingConfiguration.FieldToMatchProperty
extends software.amazon.jsii.JsiiSerializable
Include the single FieldToMatch type that you want to inspect, with additional specifications as needed, according to the type. You specify a single request component in FieldToMatch for each rule statement that requires it. To inspect more than one component of the web request, create a separate rule statement for each component.
Example JSON for a QueryString field to match:
"FieldToMatch": { "QueryString": {} }
Example JSON for a Method field to match specification:
"FieldToMatch": { "Method": { "Name": "DELETE" } }
Example:
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import software.amazon.awscdk.services.wafv2.*;
Object jsonBody;
Object method;
Object queryString;
Object singleHeader;
Object uriPath;
FieldToMatchProperty fieldToMatchProperty = FieldToMatchProperty.builder()
.jsonBody(jsonBody)
.method(method)
.queryString(queryString)
.singleHeader(singleHeader)
.uriPath(uriPath)
.build();
| Modifier and Type | Interface and Description |
|---|---|
static class |
CfnLoggingConfiguration.FieldToMatchProperty.Builder
A builder for
CfnLoggingConfiguration.FieldToMatchProperty |
static class |
CfnLoggingConfiguration.FieldToMatchProperty.Jsii$Proxy
An implementation for
CfnLoggingConfiguration.FieldToMatchProperty |
| Modifier and Type | Method and Description |
|---|---|
static CfnLoggingConfiguration.FieldToMatchProperty.Builder |
builder() |
default Object |
getJsonBody()
Inspect the request body as JSON.
|
default Object |
getMethod()
Inspect the HTTP method.
|
default Object |
getQueryString()
Inspect the query string.
|
default Object |
getSingleHeader()
Inspect a single header.
|
default Object |
getUriPath()
Inspect the request URI path.
|
@Stability(value=Stable) @Nullable default Object getJsonBody()
The request body immediately follows the request headers. This is the part of a request that contains any additional data that you want to send to your web server as the HTTP request body, such as data from a form.
Only the first 8 KB (8192 bytes) of the request body are forwarded to AWS WAF for inspection by the underlying host service. For information about how to handle oversized request bodies, see the JsonBody object configuration.
@Stability(value=Stable) @Nullable default Object getMethod()
The method indicates the type of operation that the request is asking the origin to perform.
@Stability(value=Stable) @Nullable default Object getQueryString()
This is the part of a URL that appears after a ? character, if any.
@Stability(value=Stable) @Nullable default Object getSingleHeader()
Provide the name of the header to inspect, for example, User-Agent or Referer . This setting isn't case sensitive.
Example JSON: "SingleHeader": { "Name": "haystack" }
Alternately, you can filter and inspect all headers with the Headers FieldToMatch setting.
@Stability(value=Stable) @Nullable default Object getUriPath()
This is the part of the web request that identifies a resource, for example, /images/daily-ad.jpg .
@Stability(value=Stable) static CfnLoggingConfiguration.FieldToMatchProperty.Builder builder()
Copyright © 2022. All rights reserved.