class AllowListReceiptFilter (construct)
| Language | Type name |
|---|---|
.NET | Amazon.CDK.AWS.SES.AllowListReceiptFilter |
Go | github.com/aws/aws-cdk-go/awscdk/v2/awsses#AllowListReceiptFilter |
Java | software.amazon.awscdk.services.ses.AllowListReceiptFilter |
Python | aws_cdk.aws_ses.AllowListReceiptFilter |
TypeScript (source) | aws-cdk-lib » aws_ses » AllowListReceiptFilter |
Implements
IConstruct, IDependable
An allow list receipt filter.
Example
new ses.AllowListReceiptFilter(this, 'AllowList', {
ips: [
'10.0.0.0/16',
'1.2.3.4/16',
],
});
Initializer
new AllowListReceiptFilter(scope: Construct, id: string, props: AllowListReceiptFilterProps)
Parameters
- scope
Construct - id
string - props
AllowList Receipt Filter Props
Construct Props
| Name | Type | Description |
|---|---|---|
| ips | string[] | A list of ip addresses or ranges to allow list. |
ips
Type:
string[]
A list of ip addresses or ranges to allow list.
Properties
| Name | Type | Description |
|---|---|---|
| node | Node | The tree node. |
node
Type:
Node
The tree node.
Methods
| Name | Description |
|---|---|
| to | Returns a string representation of this construct. |
toString()
public toString(): string
Returns
string
Returns a string representation of this construct.

.NET
Go
Java
Python
TypeScript (