Interface CfnMailManagerRuleSetPropsMixin.RuleNumberExpressionProperty
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnMailManagerRuleSetPropsMixin.RuleNumberExpressionProperty.Jsii$Proxy
- Enclosing class:
CfnMailManagerRuleSetPropsMixin
@Stability(Stable)
public static interface CfnMailManagerRuleSetPropsMixin.RuleNumberExpressionProperty
extends software.amazon.jsii.JsiiSerializable
A number expression to match numeric conditions with integers from the incoming email.
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.*;
RuleNumberExpressionProperty ruleNumberExpressionProperty = RuleNumberExpressionProperty.builder()
.evaluate(RuleNumberToEvaluateProperty.builder()
.attribute("attribute")
.build())
.operator("operator")
.value(123)
.build();
- See Also:
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classstatic final classAn implementation forCfnMailManagerRuleSetPropsMixin.RuleNumberExpressionProperty -
Method Summary
Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getEvaluate
The number to evaluate in a numeric condition expression.Returns union: either
IResolvableorCfnMailManagerRuleSetPropsMixin.RuleNumberToEvaluateProperty- See Also:
-
getOperator
The operator for a numeric condition expression.- See Also:
-
getValue
The value to evaluate in a numeric condition expression.- See Also:
-
builder
@Stability(Stable) static CfnMailManagerRuleSetPropsMixin.RuleNumberExpressionProperty.Builder builder()
-