Interface CfnReceiptFilter.FilterProperty

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

@Stability(Stable) public static interface CfnReceiptFilter.FilterProperty extends software.amazon.jsii.JsiiSerializable
Specifies an IP address filter.

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.*;
 FilterProperty filterProperty = FilterProperty.builder()
         .ipFilter(IpFilterProperty.builder()
                 .cidr("cidr")
                 .policy("policy")
                 .build())
         // the properties below are optional
         .name("name")
         .build();
 

See Also: