interface RuleIsInAddressListProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.SES.Mixins.CfnMailManagerRuleSetPropsMixin.RuleIsInAddressListProperty |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awsses/mixins#CfnMailManagerRuleSetPropsMixin_RuleIsInAddressListProperty |
Java | software.amazon.awscdk.mixins.preview.services.ses.mixins.CfnMailManagerRuleSetPropsMixin.RuleIsInAddressListProperty |
Python | aws_cdk.mixins_preview.aws_ses.mixins.CfnMailManagerRuleSetPropsMixin.RuleIsInAddressListProperty |
TypeScript | @aws-cdk/mixins-preview » aws_ses » mixins » 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 { mixins as ses_mixins } from '@aws-cdk/mixins-preview/aws-ses';
const ruleIsInAddressListProperty: ses_mixins.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