interface IngressIsInAddressListProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.SES.Mixins.CfnMailManagerTrafficPolicyPropsMixin.IngressIsInAddressListProperty |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awsses/mixins#CfnMailManagerTrafficPolicyPropsMixin_IngressIsInAddressListProperty |
Java | software.amazon.awscdk.mixins.preview.services.ses.mixins.CfnMailManagerTrafficPolicyPropsMixin.IngressIsInAddressListProperty |
Python | aws_cdk.mixins_preview.aws_ses.mixins.CfnMailManagerTrafficPolicyPropsMixin.IngressIsInAddressListProperty |
TypeScript | @aws-cdk/mixins-preview » aws_ses » mixins » CfnMailManagerTrafficPolicyPropsMixin » IngressIsInAddressListProperty |
The address lists and the address list attribute value that is evaluated in a policy statement's conditional expression to either deny or block the incoming email.
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 ingressIsInAddressListProperty: ses_mixins.CfnMailManagerTrafficPolicyPropsMixin.IngressIsInAddressListProperty = {
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