Interface CfnMailManagerTrafficPolicy.IngressBooleanExpressionProperty
- All Superinterfaces:
 software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
 CfnMailManagerTrafficPolicy.IngressBooleanExpressionProperty.Jsii$Proxy
- Enclosing class:
 CfnMailManagerTrafficPolicy
@Stability(Stable)
public static interface CfnMailManagerTrafficPolicy.IngressBooleanExpressionProperty
extends software.amazon.jsii.JsiiSerializable
The structure for a boolean condition matching on the incoming mail.
 
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.*;
 IngressBooleanExpressionProperty ingressBooleanExpressionProperty = IngressBooleanExpressionProperty.builder()
         .evaluate(IngressBooleanToEvaluateProperty.builder()
                 .analysis(IngressAnalysisProperty.builder()
                         .analyzer("analyzer")
                         .resultField("resultField")
                         .build())
                 .isInAddressList(IngressIsInAddressListProperty.builder()
                         .addressLists(List.of("addressLists"))
                         .attribute("attribute")
                         .build())
                 .build())
         .operator("operator")
         .build();
 
 - See Also:
 
- 
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classstatic final classAn implementation forCfnMailManagerTrafficPolicy.IngressBooleanExpressionProperty - 
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
IResolvableorCfnMailManagerTrafficPolicy.IngressBooleanToEvaluateProperty- See Also:
 
 - 
getOperator
The matching operator for a boolean condition expression.- See Also:
 
 - 
builder
@Stability(Stable) static CfnMailManagerTrafficPolicy.IngressBooleanExpressionProperty.Builder builder() 
 -