interface RuleDmarcExpressionProperty
Language | Type name |
---|---|
![]() | Amazon.CDK.AWS.SES.CfnMailManagerRuleSet.RuleDmarcExpressionProperty |
![]() | github.com/aws/aws-cdk-go/awscdk/v2/awsses#CfnMailManagerRuleSet_RuleDmarcExpressionProperty |
![]() | software.amazon.awscdk.services.ses.CfnMailManagerRuleSet.RuleDmarcExpressionProperty |
![]() | aws_cdk.aws_ses.CfnMailManagerRuleSet.RuleDmarcExpressionProperty |
![]() | aws-cdk-lib » aws_ses » CfnMailManagerRuleSet » RuleDmarcExpressionProperty |
A DMARC policy expression.
The condition matches if the given DMARC policy matches that of the incoming email.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { aws_ses as ses } from 'aws-cdk-lib';
const ruleDmarcExpressionProperty: ses.CfnMailManagerRuleSet.RuleDmarcExpressionProperty = {
operator: 'operator',
values: ['values'],
};
Properties
Name | Type | Description |
---|---|---|
operator | string | The operator to apply to the DMARC policy of the incoming email. |
values | string[] | The values to use for the given DMARC policy operator. |
operator
Type:
string
The operator to apply to the DMARC policy of the incoming email.
values
Type:
string[]
The values to use for the given DMARC policy operator.
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.