Show / Hide Table of Contents

Class CfnMailManagerRuleSet.RuleVerdictExpressionProperty

A verdict expression is evaluated against verdicts of the email.

Inheritance
object
CfnMailManagerRuleSet.RuleVerdictExpressionProperty
Implements
CfnMailManagerRuleSet.IRuleVerdictExpressionProperty
Inherited Members
object.GetType()
object.MemberwiseClone()
object.ToString()
object.Equals(object)
object.Equals(object, object)
object.ReferenceEquals(object, object)
object.GetHashCode()
Namespace: Amazon.CDK.AWS.SES
Assembly: Amazon.CDK.Lib.dll
Syntax (csharp)
public class CfnMailManagerRuleSet.RuleVerdictExpressionProperty : CfnMailManagerRuleSet.IRuleVerdictExpressionProperty
Syntax (vb)
Public Class CfnMailManagerRuleSet.RuleVerdictExpressionProperty Implements 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

Constructors

RuleVerdictExpressionProperty()

A verdict expression is evaluated against verdicts of the email.

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.

Constructors

RuleVerdictExpressionProperty()

A verdict expression is evaluated against verdicts of the email.

public RuleVerdictExpressionProperty()
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" }
             };

Properties

Evaluate

The verdict to evaluate in a verdict condition expression.

public object Evaluate { get; set; }
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.

public string Operator { get; set; }
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.

public string[] Values { get; set; }
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

Implements

CfnMailManagerRuleSet.IRuleVerdictExpressionProperty
Back to top Generated by DocFX