public static interface CfnReceiptFilter.FilterProperty
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();
Modifier and Type | Interface and Description |
---|---|
static class |
CfnReceiptFilter.FilterProperty.Builder
A builder for
CfnReceiptFilter.FilterProperty |
static class |
CfnReceiptFilter.FilterProperty.Jsii$Proxy
An implementation for
CfnReceiptFilter.FilterProperty |
Modifier and Type | Method and Description |
---|---|
static CfnReceiptFilter.FilterProperty.Builder |
builder() |
java.lang.Object |
getIpFilter()
A structure that provides the IP addresses to block or allow, and whether to block or allow incoming mail from them.
|
default java.lang.String |
getName()
The name of the IP address filter.
|
java.lang.Object getIpFilter()
default java.lang.String getName()
static CfnReceiptFilter.FilterProperty.Builder builder()