Interface CfnMailManagerRuleSet.RuleBooleanExpressionProperty
- All Superinterfaces:
 software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
 CfnMailManagerRuleSet.RuleBooleanExpressionProperty.Jsii$Proxy
- Enclosing class:
 CfnMailManagerRuleSet
@Stability(Stable)
public static interface CfnMailManagerRuleSet.RuleBooleanExpressionProperty
extends software.amazon.jsii.JsiiSerializable
A boolean expression to be used in a rule condition.
 
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.ses.*;
 RuleBooleanExpressionProperty ruleBooleanExpressionProperty = RuleBooleanExpressionProperty.builder()
         .evaluate(RuleBooleanToEvaluateProperty.builder()
                 .analysis(AnalysisProperty.builder()
                         .analyzer("analyzer")
                         .resultField("resultField")
                         .build())
                 .attribute("attribute")
                 .isInAddressList(RuleIsInAddressListProperty.builder()
                         .addressLists(List.of("addressLists"))
                         .attribute("attribute")
                         .build())
                 .build())
         .operator("operator")
         .build();
 
 - See Also:
 
- 
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classA builder forCfnMailManagerRuleSet.RuleBooleanExpressionPropertystatic final classAn implementation forCfnMailManagerRuleSet.RuleBooleanExpressionProperty - 
Method Summary
Modifier and TypeMethodDescriptionbuilder()The operand on which to perform a boolean condition operation.The matching operator for a boolean condition expression.Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson 
- 
Method Details
- 
getEvaluate
The operand on which to perform a boolean condition operation.Returns union: either
IResolvableorCfnMailManagerRuleSet.RuleBooleanToEvaluateProperty- See Also:
 
 - 
getOperator
The matching operator for a boolean condition expression.- See Also:
 
 - 
builder
 
 -