aws-cdk-lib.aws_ses.AllowListReceiptFilter

class AllowListReceiptFilter (construct)

LanguageType name
.NETAmazon.CDK.AWS.SES.AllowListReceiptFilter
Gogithub.com/aws/aws-cdk-go/awscdk/v2/awsses#AllowListReceiptFilter
Javasoftware.amazon.awscdk.services.ses.AllowListReceiptFilter
Pythonaws_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 AllowListReceiptFilterProps

Construct Props

NameTypeDescription
ipsstring[]A list of ip addresses or ranges to allow list.

ips

Type: string[]

A list of ip addresses or ranges to allow list.

Properties

NameTypeDescription
nodeNodeThe tree node.

node

Type: Node

The tree node.

Methods

NameDescription
toString()Returns a string representation of this construct.

toString()

public toString(): string

Returns

  • string

Returns a string representation of this construct.