aws-cdk-lib.aws_ses.AllowListReceiptFilterProps

interface AllowListReceiptFilterProps

LanguageType name
.NETAmazon.CDK.AWS.SES.AllowListReceiptFilterProps
Gogithub.com/aws/aws-cdk-go/awscdk/v2/awsses#AllowListReceiptFilterProps
Javasoftware.amazon.awscdk.services.ses.AllowListReceiptFilterProps
Pythonaws_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

NameTypeDescription
ipsstring[]A list of ip addresses or ranges to allow list.

ips

Type: string[]

A list of ip addresses or ranges to allow list.