Show / Hide Table of Contents

Interface CfnMailManagerRuleSet.IRuleDmarcExpressionProperty

A DMARC policy expression.

Namespace: Amazon.CDK.AWS.SES
Assembly: Amazon.CDK.Lib.dll
Syntax (csharp)
public interface CfnMailManagerRuleSet.IRuleDmarcExpressionProperty
Syntax (vb)
Public Interface CfnMailManagerRuleSet.IRuleDmarcExpressionProperty
Remarks

The condition matches if the given DMARC policy matches that of the incoming email.

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ses-mailmanagerruleset-ruledmarcexpression.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 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

string

Remarks

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

Values

The values to use for the given DMARC policy operator.

string[] Values { get; }
Property Value

string[]

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.

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

Back to top Generated by DocFX