Interface CfnMailManagerTrafficPolicy.IIngressBooleanExpressionProperty
The structure for a boolean condition matching on the incoming mail.
Namespace: Amazon.CDK.AWS.SES
Assembly: Amazon.CDK.Lib.dll
Syntax (csharp)
public interface CfnMailManagerTrafficPolicy.IIngressBooleanExpressionProperty
Syntax (vb)
Public Interface CfnMailManagerTrafficPolicy.IIngressBooleanExpressionProperty
Remarks
ExampleMetadata: fixture=_generated
Examples
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
using Amazon.CDK.AWS.SES;
var ingressBooleanExpressionProperty = new IngressBooleanExpressionProperty {
Evaluate = new IngressBooleanToEvaluateProperty {
Analysis = new IngressAnalysisProperty {
Analyzer = "analyzer",
ResultField = "resultField"
},
IsInAddressList = new IngressIsInAddressListProperty {
AddressLists = new [] { "addressLists" },
Attribute = "attribute"
}
},
Operator = "operator"
};
Synopsis
Properties
Evaluate | The operand on which to perform a boolean condition operation. |
Operator | The matching operator for a boolean condition expression. |
Properties
Evaluate
The operand on which to perform a boolean condition operation.
object Evaluate { get; }
Property Value
Remarks
Operator
The matching operator for a boolean condition expression.
string Operator { get; }