Show / Hide Table of Contents

Class CfnMailManagerRuleSet.RuleStringExpressionProperty

A string expression is evaluated against strings or substrings of the email.

Inheritance
object
CfnMailManagerRuleSet.RuleStringExpressionProperty
Implements
CfnMailManagerRuleSet.IRuleStringExpressionProperty
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.RuleStringExpressionProperty : CfnMailManagerRuleSet.IRuleStringExpressionProperty
Syntax (vb)
Public Class CfnMailManagerRuleSet.RuleStringExpressionProperty Implements CfnMailManagerRuleSet.IRuleStringExpressionProperty
Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ses-mailmanagerruleset-rulestringexpression.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 ruleStringExpressionProperty = new RuleStringExpressionProperty {
                 Evaluate = new RuleStringToEvaluateProperty {
                     Analysis = new AnalysisProperty {
                         Analyzer = "analyzer",
                         ResultField = "resultField"
                     },
                     Attribute = "attribute",
                     MimeHeaderAttribute = "mimeHeaderAttribute"
                 },
                 Operator = "operator",
                 Values = new [] { "values" }
             };

Synopsis

Constructors

RuleStringExpressionProperty()

A string expression is evaluated against strings or substrings of the email.

Properties

Evaluate

The string to evaluate in a string condition expression.

Operator

The matching operator for a string condition expression.

Values

The string(s) to be evaluated in a string condition expression.

Constructors

RuleStringExpressionProperty()

A string expression is evaluated against strings or substrings of the email.

public RuleStringExpressionProperty()
Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ses-mailmanagerruleset-rulestringexpression.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 ruleStringExpressionProperty = new RuleStringExpressionProperty {
                 Evaluate = new RuleStringToEvaluateProperty {
                     Analysis = new AnalysisProperty {
                         Analyzer = "analyzer",
                         ResultField = "resultField"
                     },
                     Attribute = "attribute",
                     MimeHeaderAttribute = "mimeHeaderAttribute"
                 },
                 Operator = "operator",
                 Values = new [] { "values" }
             };

Properties

Evaluate

The string to evaluate in a string condition expression.

public object Evaluate { get; set; }
Property Value

object

Remarks

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

Operator

The matching operator for a string condition expression.

public string Operator { get; set; }
Property Value

string

Remarks

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

Values

The string(s) to be evaluated in a string condition expression.

public string[] Values { get; set; }
Property Value

string[]

Remarks

For all operators, except for NOT_EQUALS, if multiple values are given, the values are processed as an OR. That is, if any of the values match the email's string using the given operator, the condition is deemed to match. However, for NOT_EQUALS, the condition is only deemed to match if none of the given strings match the email's string.

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

Implements

CfnMailManagerRuleSet.IRuleStringExpressionProperty
Back to top Generated by DocFX