Interface CfnMailManagerRuleSet.IRuleVerdictExpressionProperty
A verdict expression is evaluated against verdicts of the email.
Namespace: Amazon.CDK.AWS.SES
Assembly: Amazon.CDK.Lib.dll
Syntax (csharp)
public interface CfnMailManagerRuleSet.IRuleVerdictExpressionProperty
Syntax (vb)
Public Interface CfnMailManagerRuleSet.IRuleVerdictExpressionProperty
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 ruleVerdictExpressionProperty = new RuleVerdictExpressionProperty {
Evaluate = new RuleVerdictToEvaluateProperty {
Analysis = new AnalysisProperty {
Analyzer = "analyzer",
ResultField = "resultField"
},
Attribute = "attribute"
},
Operator = "operator",
Values = new [] { "values" }
};
Synopsis
Properties
Evaluate | The verdict to evaluate in a verdict condition expression. |
Operator | The matching operator for a verdict condition expression. |
Values | The values to match with the email's verdict using the given operator. |
Properties
Evaluate
The verdict to evaluate in a verdict condition expression.
object Evaluate { get; }
Property Value
Remarks
Operator
The matching operator for a verdict condition expression.
string Operator { get; }
Property Value
Remarks
Values
The values to match with the email's verdict using the given operator.
string[] Values { get; }
Property Value
string[]
Remarks
For the EQUALS operator, if multiple values are given, the condition is deemed to match if any of the given verdicts match that of the email. For the NOT_EQUALS operator, if multiple values are given, the condition is deemed to match of none of the given verdicts match the verdict of the email.