interface FilterProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.SES.Mixins.CfnReceiptFilterPropsMixin.FilterProperty |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awsses/mixins#CfnReceiptFilterPropsMixin_FilterProperty |
Java | software.amazon.awscdk.mixins.preview.services.ses.mixins.CfnReceiptFilterPropsMixin.FilterProperty |
Python | aws_cdk.mixins_preview.aws_ses.mixins.CfnReceiptFilterPropsMixin.FilterProperty |
TypeScript | @aws-cdk/mixins-preview » aws_ses » mixins » CfnReceiptFilterPropsMixin » FilterProperty |
Specifies an IP address filter.
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 filterProperty: ses_mixins.CfnReceiptFilterPropsMixin.FilterProperty = {
ipFilter: {
cidr: 'cidr',
policy: 'policy',
},
name: 'name',
};
Properties
| Name | Type | Description |
|---|---|---|
| ip | IResolvable | Ip | A structure that provides the IP addresses to block or allow, and whether to block or allow incoming mail from them. |
| name? | string | The name of the IP address filter. The name must meet the following requirements:. |
ipFilter?
Type:
IResolvable | Ip
(optional)
A structure that provides the IP addresses to block or allow, and whether to block or allow incoming mail from them.
name?
Type:
string
(optional)
The name of the IP address filter. The name must meet the following requirements:.
- Contain only ASCII letters (a-z, A-Z), numbers (0-9), underscores (_), or dashes (-).
- Start and end with a letter or number.
- Contain 64 characters or fewer.

.NET
Go
Java
Python
TypeScript