Interface CfnMailManagerRuleSet.IRuleDmarcExpressionProperty
A DMARC policy expression.
Namespace: Amazon.CDK.AWS.SES
Assembly: Amazon.CDK.Lib.dll
Syntax (csharp)
public interface IRuleDmarcExpressionProperty
Syntax (vb)
Public Interface IRuleDmarcExpressionProperty
Remarks
The condition matches if the given DMARC policy matches that of the incoming email.
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 ruleDmarcExpressionProperty = new RuleDmarcExpressionProperty {
Operator = "operator",
Values = new [] { "values" }
};
Synopsis
Properties
Operator | The operator to apply to the DMARC policy of the incoming email. |
Values | The values to use for the given DMARC policy operator. |
Properties
Operator
The operator to apply to the DMARC policy of the incoming email.
string Operator { get; }
Property Value
System.
Remarks
Values
The values to use for the given DMARC policy operator.
string[] Values { get; }
Property Value
System.
Remarks
For the operator EQUALS, if multiple values are given, they are evaluated as an OR. That is, if any of the given values match, the condition is deemed to match. For the operator NOT_EQUALS, if multiple values are given, they are evaluated as an AND. That is, only if the email's DMARC policy is not equal to any of the given values, then the condition is deemed to match.