interface AllowListReceiptFilterProps
| Language | Type name |
|---|---|
.NET | Amazon.CDK.AWS.SES.AllowListReceiptFilterProps |
Go | github.com/aws/aws-cdk-go/awscdk/v2/awsses#AllowListReceiptFilterProps |
Java | software.amazon.awscdk.services.ses.AllowListReceiptFilterProps |
Python | aws_cdk.aws_ses.AllowListReceiptFilterProps |
TypeScript (source) | aws-cdk-lib » aws_ses » AllowListReceiptFilterProps |
Construction properties for am AllowListReceiptFilter.
Example
new ses.AllowListReceiptFilter(this, 'AllowList', {
ips: [
'10.0.0.0/16',
'1.2.3.4/16',
],
});
Properties
| Name | Type | Description |
|---|---|---|
| ips | string[] | A list of ip addresses or ranges to allow list. |
ips
Type:
string[]
A list of ip addresses or ranges to allow list.

.NET
Go
Java
Python
TypeScript (