aws-cdk-lib.aws_ses.CfnReceiptFilterProps

interface CfnReceiptFilterProps

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

Properties for defining a CfnReceiptFilter.

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 cfnReceiptFilterProps: ses.CfnReceiptFilterProps = {
  filter: {
    ipFilter: {
      cidr: 'cidr',
      policy: 'policy',
    },

    // the properties below are optional
    name: 'name',
  },
};

Properties

NameTypeDescription
filterIResolvable | FilterPropertyA data structure that describes the IP address filter to create, which consists of a name, an IP address range, and whether to allow or block mail from it.

filter

Type: IResolvable | FilterProperty

A data structure that describes the IP address filter to create, which consists of a name, an IP address range, and whether to allow or block mail from it.