interface RuleIsInAddressListProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.CfnPropertyMixins.AWS.SES.CfnMailManagerRuleSetPropsMixin.RuleIsInAddressListProperty |
Go | github.com/aws/aws-cdk-go/awscdkcfnpropertymixins/v2/awsses#CfnMailManagerRuleSetPropsMixin_RuleIsInAddressListProperty |
Java | software.amazon.awscdk.cfnpropertymixins.services.ses.CfnMailManagerRuleSetPropsMixin.RuleIsInAddressListProperty |
Python | aws_cdk.cfn_property_mixins.aws_ses.CfnMailManagerRuleSetPropsMixin.RuleIsInAddressListProperty |
TypeScript | @aws-cdk/cfn-property-mixins » aws_ses » CfnMailManagerRuleSetPropsMixin » 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/cfn-property-mixins';
const ruleIsInAddressListProperty: ses.CfnMailManagerRuleSetPropsMixin.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[]
(optional)
The address lists that will be used for evaluation.
attribute?
Type:
string
(optional)
The email attribute that needs to be evaluated against the address list.

.NET
Go
Java
Python
TypeScript