Interface CfnMailManagerTrafficPolicy.IIngressStringExpressionProperty
The structure for a string based condition matching on the incoming mail.
Namespace: Amazon.CDK.AWS.SES
Assembly: Amazon.CDK.Lib.dll
Syntax (csharp)
public interface IIngressStringExpressionProperty
Syntax (vb)
Public Interface 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 {
Attribute = "attribute"
},
Operator = "operator",
Values = new [] { "values" }
};
Synopsis
Properties
Evaluate | The left hand side argument of a string condition expression. |
Operator | |
Values | The right hand side argument of a string condition expression. |
Properties
Evaluate
The left hand side argument of a string condition expression.
object Evaluate { get; }
Property Value
System.Object
Remarks
Operator
string Operator { get; }
Property Value
System.String
Remarks
Values
The right hand side argument of a string condition expression.
string[] Values { get; }
Property Value
System.String[]