interface IngressIsInAddressListProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.CfnPropertyMixins.AWS.SES.CfnMailManagerTrafficPolicyPropsMixin.IngressIsInAddressListProperty |
Go | github.com/aws/aws-cdk-go/awscdkcfnpropertymixins/v2/awsses#CfnMailManagerTrafficPolicyPropsMixin_IngressIsInAddressListProperty |
Java | software.amazon.awscdk.cfnpropertymixins.services.ses.CfnMailManagerTrafficPolicyPropsMixin.IngressIsInAddressListProperty |
Python | aws_cdk.cfn_property_mixins.aws_ses.CfnMailManagerTrafficPolicyPropsMixin.IngressIsInAddressListProperty |
TypeScript | @aws-cdk/cfn-property-mixins » aws_ses » 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 { aws_ses as ses } from '@aws-cdk/cfn-property-mixins';
const ingressIsInAddressListProperty: ses.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