AllowListReceiptFilter

class aws_cdk.aws_ses.AllowListReceiptFilter(scope, id, *, ips)

Bases: Construct

An allow list receipt filter.

ExampleMetadata:

infused

Example:

ses.AllowListReceiptFilter(self, "AllowList",
    ips=["10.0.0.0/16", "1.2.3.4/16"
    ]
)
Parameters:
  • scope (Construct) –

  • id (str) –

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

Methods

to_string()

Returns a string representation of this construct.

Return type:

str

Attributes

node

The construct tree node associated with this construct.

Static Methods

classmethod is_construct(x)

Return whether the given object is a Construct.

Parameters:

x (Any) –

Return type:

bool