interface RuleIsInAddressListProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.AWS.SES.CfnMailManagerRuleSet.RuleIsInAddressListProperty |
Go | github.com/aws/aws-cdk-go/awscdk/v2/awsses#CfnMailManagerRuleSet_RuleIsInAddressListProperty |
Java | software.amazon.awscdk.services.ses.CfnMailManagerRuleSet.RuleIsInAddressListProperty |
Python | aws_cdk.aws_ses.CfnMailManagerRuleSet.RuleIsInAddressListProperty |
TypeScript | aws-cdk-lib » aws_ses » CfnMailManagerRuleSet » RuleIsInAddressListProperty |
The structure type for a boolean condition that provides the address lists and address list attribute to evaluate.
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 ruleIsInAddressListProperty: ses.CfnMailManagerRuleSet.RuleIsInAddressListProperty = {
addressLists: ['addressLists'],
attribute: 'attribute',
};
Properties
| Name | Type | Description |
|---|---|---|
| address | string[] | The address lists that will be used for evaluation. |
| attribute | string | The email attribute that needs to be evaluated against the address list. |
addressLists
Type:
string[]
The address lists that will be used for evaluation.
attribute
Type:
string
The email attribute that needs to be evaluated against the address list.

.NET
Go
Java
Python
TypeScript