Interface CfnMailManagerRuleSetPropsMixin.RuleBooleanExpressionProperty
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnMailManagerRuleSetPropsMixin.RuleBooleanExpressionProperty.Jsii$Proxy
- Enclosing class:
CfnMailManagerRuleSetPropsMixin
@Stability(Stable)
public static interface CfnMailManagerRuleSetPropsMixin.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.cfnpropertymixins.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 classstatic final classAn implementation forCfnMailManagerRuleSetPropsMixin.RuleBooleanExpressionProperty -
Method Summary
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
IResolvableorCfnMailManagerRuleSetPropsMixin.RuleBooleanToEvaluateProperty- See Also:
-
getOperator
The matching operator for a boolean condition expression.- See Also:
-
builder
@Stability(Stable) static CfnMailManagerRuleSetPropsMixin.RuleBooleanExpressionProperty.Builder builder()
-