Interface CfnReceiptFilter.IpFilterProperty

All Superinterfaces:
software.amazon.jsii.JsiiSerializable
All Known Implementing Classes:
CfnReceiptFilter.IpFilterProperty.Jsii$Proxy
Enclosing class:
CfnReceiptFilter

@Stability(Stable) public static interface CfnReceiptFilter.IpFilterProperty extends software.amazon.jsii.JsiiSerializable
A receipt IP address filter enables you to specify whether to accept or reject mail originating from an IP address or range of IP addresses.

For information about setting up IP address filters, see the Amazon SES Developer Guide .

Example:

 // The code below shows an example of how to instantiate this type.
 // The values are placeholders you should change.
 import software.amazon.awscdk.services.ses.*;
 IpFilterProperty ipFilterProperty = IpFilterProperty.builder()
         .cidr("cidr")
         .policy("policy")
         .build();
 

See Also: