Class CfnMailManagerTrafficPolicy.IngressStringExpressionProperty
The structure for a string based condition matching on the incoming mail.
Inherited Members
Namespace: Amazon.CDK.AWS.SES
Assembly: Amazon.CDK.Lib.dll
Syntax (csharp)
public class CfnMailManagerTrafficPolicy.IngressStringExpressionProperty : CfnMailManagerTrafficPolicy.IIngressStringExpressionProperty
Syntax (vb)
Public Class CfnMailManagerTrafficPolicy.IngressStringExpressionProperty Implements CfnMailManagerTrafficPolicy.IIngressStringExpressionProperty
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 ingressStringExpressionProperty = new IngressStringExpressionProperty {
Evaluate = new IngressStringToEvaluateProperty {
Analysis = new IngressAnalysisProperty {
Analyzer = "analyzer",
ResultField = "resultField"
},
Attribute = "attribute"
},
Operator = "operator",
Values = new [] { "values" }
};
Synopsis
Constructors
IngressStringExpressionProperty() | The structure for a string based condition matching on the incoming mail. |
Properties
Evaluate | The left hand side argument of a string condition expression. |
Operator | The structure for a string based condition matching on the incoming mail. |
Values | The right hand side argument of a string condition expression. |
Constructors
IngressStringExpressionProperty()
The structure for a string based condition matching on the incoming mail.
public IngressStringExpressionProperty()
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 ingressStringExpressionProperty = new IngressStringExpressionProperty {
Evaluate = new IngressStringToEvaluateProperty {
Analysis = new IngressAnalysisProperty {
Analyzer = "analyzer",
ResultField = "resultField"
},
Attribute = "attribute"
},
Operator = "operator",
Values = new [] { "values" }
};
Properties
Evaluate
The left hand side argument of a string condition expression.
public object Evaluate { get; set; }
Property Value
Remarks
Operator
The structure for a string based condition matching on the incoming mail.
public string Operator { get; set; }
Property Value
Remarks
Values
The right hand side argument of a string condition expression.
public string[] Values { get; set; }
Property Value
string[]