Interface CfnMailManagerTrafficPolicy.IngressIsInAddressListProperty
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnMailManagerTrafficPolicy.IngressIsInAddressListProperty.Jsii$Proxy
- Enclosing class:
CfnMailManagerTrafficPolicy
@Stability(Stable)
public static interface CfnMailManagerTrafficPolicy.IngressIsInAddressListProperty
extends software.amazon.jsii.JsiiSerializable
The address lists and the address list attribute value that is evaluated in a policy statement's conditional expression to either deny or block the incoming email.
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.*;
IngressIsInAddressListProperty ingressIsInAddressListProperty = IngressIsInAddressListProperty.builder()
.addressLists(List.of("addressLists"))
.attribute("attribute")
.build();
- See Also:
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classstatic final classAn implementation forCfnMailManagerTrafficPolicy.IngressIsInAddressListProperty -
Method Summary
Modifier and TypeMethodDescriptionbuilder()The address lists that will be used for evaluation.The email attribute that needs to be evaluated against the address list.Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getAddressLists
The address lists that will be used for evaluation.- See Also:
-
getAttribute
The email attribute that needs to be evaluated against the address list.- See Also:
-
builder
@Stability(Stable) static CfnMailManagerTrafficPolicy.IngressIsInAddressListProperty.Builder builder()
-