interface AllowListReceiptFilterProps
| Language | Type name |
|---|---|
.NET | Amazon.CDK.AWS.SES.AllowListReceiptFilterProps |
Java | software.amazon.awscdk.services.ses.AllowListReceiptFilterProps |
Python | aws_cdk.aws_ses.AllowListReceiptFilterProps |
TypeScript (source) | @aws-cdk/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
Java
Python
TypeScript (