interface CfnReceiptFilterMixinProps
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.SES.Mixins.CfnReceiptFilterMixinProps |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awsses/mixins#CfnReceiptFilterMixinProps |
Java | software.amazon.awscdk.mixins.preview.services.ses.mixins.CfnReceiptFilterMixinProps |
Python | aws_cdk.mixins_preview.aws_ses.mixins.CfnReceiptFilterMixinProps |
TypeScript | @aws-cdk/mixins-preview » aws_ses » mixins » CfnReceiptFilterMixinProps |
Properties for CfnReceiptFilterPropsMixin.
See also: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ses-receiptfilter.html
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { mixins as ses_mixins } from '@aws-cdk/mixins-preview/aws-ses';
const cfnReceiptFilterMixinProps: ses_mixins.CfnReceiptFilterMixinProps = {
filter: {
ipFilter: {
cidr: 'cidr',
policy: 'policy',
},
name: 'name',
},
};
Properties
| Name | Type | Description |
|---|---|---|
| filter? | IResolvable | Filter | 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. |
filter?
Type:
IResolvable | Filter
(optional)
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.

.NET
Go
Java
Python
TypeScript