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. |
| with(...mixins) | Applies one or more mixins to this construct. |
toString()
public toString(): string
Returns
string
Returns a string representation of this construct.
with(...mixins)
public with(...mixins: IMixin[]): IConstruct
Parameters
- mixins
IMixin— The mixins to apply.
Returns
Applies one or more mixins to this construct.
Mixins are applied in order. The list of constructs is captured at the
start of the call, so constructs added by a mixin will not be visited.
Use multiple with() calls if subsequent mixins should apply to added
constructs.

.NET
Go
Java
Python
TypeScript (