AllowListReceiptFilterProps

class aws_cdk.aws_ses.AllowListReceiptFilterProps(*, ips)

Bases: object

Construction properties for am AllowListReceiptFilter.

Parameters:

ips (Sequence[str]) – A list of ip addresses or ranges to allow list.

ExampleMetadata:

infused

Example:

ses.AllowListReceiptFilter(self, "AllowList",
    ips=["10.0.0.0/16", "1.2.3.4/16"
    ]
)

Attributes

ips

A list of ip addresses or ranges to allow list.