WhiteListReceiptFilter
- class aws_cdk.aws_ses.WhiteListReceiptFilter(scope, id, *, ips)
Bases:
AllowListReceiptFilter
(deprecated) An allow list receipt filter.
- Deprecated
use
AllowListReceiptFilter
- Stability
deprecated
- ExampleMetadata
fixture=_generated
Example:
# The code below shows an example of how to instantiate this type. # The values are placeholders you should change. import aws_cdk.aws_ses as ses white_list_receipt_filter = ses.WhiteListReceiptFilter(self, "MyWhiteListReceiptFilter", ips=["ips"] )
- Parameters
scope (
Construct
) –id (
str
) –ips (
Sequence
[str
]) – A list of ip addresses or ranges to allow list.
- Stability
deprecated
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