public static interface CfnLoggingConfiguration.ConditionProperty
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.*; ConditionProperty conditionProperty = ConditionProperty.builder() .actionCondition(ActionConditionProperty.builder() .action("action") .build()) .labelNameCondition(LabelNameConditionProperty.builder() .labelName("labelName") .build()) .build();
Modifier and Type | Interface and Description |
---|---|
static class |
CfnLoggingConfiguration.ConditionProperty.Builder
A builder for
CfnLoggingConfiguration.ConditionProperty |
static class |
CfnLoggingConfiguration.ConditionProperty.Jsii$Proxy
An implementation for
CfnLoggingConfiguration.ConditionProperty |
Modifier and Type | Method and Description |
---|---|
static CfnLoggingConfiguration.ConditionProperty.Builder |
builder() |
default java.lang.Object |
getActionCondition()
A single action condition.
|
default java.lang.Object |
getLabelNameCondition()
A single label name condition.
|
default java.lang.Object getActionCondition()
This is the action setting that a log record must contain in order to meet the condition.
default java.lang.Object getLabelNameCondition()
This is the fully qualified label name that a log record must contain in order to meet the condition. Fully qualified labels have a prefix, optional namespaces, and label name. The prefix identifies the rule group or web ACL context of the rule that added the label.
static CfnLoggingConfiguration.ConditionProperty.Builder builder()