Interface CfnTelemetryRulePropsMixin.WAFLoggingParametersProperty

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

@Stability(Stable) public static interface CfnTelemetryRulePropsMixin.WAFLoggingParametersProperty extends software.amazon.jsii.JsiiSerializable
Configuration parameters for WAF logging, including redacted fields and logging filters.

Example:

 // The code below shows an example of how to instantiate this type.
 // The values are placeholders you should change.
 import software.amazon.awscdk.mixins.preview.services.observabilityadmin.mixins.*;
 WAFLoggingParametersProperty wAFLoggingParametersProperty = WAFLoggingParametersProperty.builder()
         .loggingFilter(LoggingFilterProperty.builder()
                 .defaultBehavior("defaultBehavior")
                 .filters(List.of(FilterProperty.builder()
                         .behavior("behavior")
                         .conditions(List.of(ConditionProperty.builder()
                                 .actionCondition(ActionConditionProperty.builder()
                                         .action("action")
                                         .build())
                                 .labelNameCondition(LabelNameConditionProperty.builder()
                                         .labelName("labelName")
                                         .build())
                                 .build()))
                         .requirement("requirement")
                         .build()))
                 .build())
         .logType("logType")
         .redactedFields(List.of(FieldToMatchProperty.builder()
                 .method("method")
                 .queryString("queryString")
                 .singleHeader(SingleHeaderProperty.builder()
                         .name("name")
                         .build())
                 .uriPath("uriPath")
                 .build()))
         .build();
 

See Also: