Interface CfnTelemetryRule.FieldToMatchProperty

All Superinterfaces:
software.amazon.jsii.JsiiSerializable
All Known Implementing Classes:
CfnTelemetryRule.FieldToMatchProperty.Jsii$Proxy
Enclosing class:
CfnTelemetryRule

@Stability(Stable) public static interface CfnTelemetryRule.FieldToMatchProperty extends software.amazon.jsii.JsiiSerializable
Specifies a field in the request to redact from WAF logs, such as headers, query parameters, or body content.

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.observabilityadmin.*;
 FieldToMatchProperty fieldToMatchProperty = FieldToMatchProperty.builder()
         .method("method")
         .queryString("queryString")
         .singleHeader(SingleHeaderProperty.builder()
                 .name("name")
                 .build())
         .uriPath("uriPath")
         .build();
 

See Also: