aws-cdk-lib.aws_ses.CfnReceiptFilter.IpFilterProperty

interface IpFilterProperty

LanguageType name
.NETAmazon.CDK.AWS.SES.CfnReceiptFilter.IpFilterProperty
Gogithub.com/aws/aws-cdk-go/awscdk/v2/awsses#CfnReceiptFilter_IpFilterProperty
Javasoftware.amazon.awscdk.services.ses.CfnReceiptFilter.IpFilterProperty
Pythonaws_cdk.aws_ses.CfnReceiptFilter.IpFilterProperty
TypeScript aws-cdk-lib » aws_ses » CfnReceiptFilter » IpFilterProperty

A receipt IP address filter enables you to specify whether to accept or reject mail originating from an IP address or range of IP addresses.

For information about setting up IP address filters, see the Amazon SES Developer Guide .

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-lib';
const ipFilterProperty: ses.CfnReceiptFilter.IpFilterProperty = {
  cidr: 'cidr',
  policy: 'policy',
};

Properties

NameTypeDescription
cidrstringA single IP address or a range of IP addresses to block or allow, specified in Classless Inter-Domain Routing (CIDR) notation.
policystringIndicates whether to block or allow incoming mail from the specified IP addresses.

cidr

Type: string

A single IP address or a range of IP addresses to block or allow, specified in Classless Inter-Domain Routing (CIDR) notation.

An example of a single email address is 10.0.0.1. An example of a range of IP addresses is 10.0.0.1/24. For more information about CIDR notation, see RFC 2317 .


policy

Type: string

Indicates whether to block or allow incoming mail from the specified IP addresses.