Show / Hide Table of Contents

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

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ses-mailmanagerruleset-ruleverdictexpression.html

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

object

Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ses-mailmanagerruleset-ruleverdictexpression.html#cfn-ses-mailmanagerruleset-ruleverdictexpression-evaluate

Operator

The matching operator for a verdict condition expression.

string Operator { get; }
Property Value

string

Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ses-mailmanagerruleset-ruleverdictexpression.html#cfn-ses-mailmanagerruleset-ruleverdictexpression-operator

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.

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ses-mailmanagerruleset-ruleverdictexpression.html#cfn-ses-mailmanagerruleset-ruleverdictexpression-values

Back to top Generated by DocFX