Interface CfnMailManagerTrafficPolicyProps

All Superinterfaces:
software.amazon.jsii.JsiiSerializable
All Known Implementing Classes:
CfnMailManagerTrafficPolicyProps.Jsii$Proxy

@Generated(value="jsii-pacmak/1.103.1 (build bef2dea)", date="2024-09-11T18:01:23.870Z") @Stability(Stable) public interface CfnMailManagerTrafficPolicyProps extends software.amazon.jsii.JsiiSerializable
Properties for defining a CfnMailManagerTrafficPolicy.

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.*;
 CfnMailManagerTrafficPolicyProps cfnMailManagerTrafficPolicyProps = CfnMailManagerTrafficPolicyProps.builder()
         .defaultAction("defaultAction")
         .policyStatements(List.of(PolicyStatementProperty.builder()
                 .action("action")
                 .conditions(List.of(PolicyConditionProperty.builder()
                         .booleanExpression(IngressBooleanExpressionProperty.builder()
                                 .evaluate(IngressBooleanToEvaluateProperty.builder()
                                         .analysis(IngressAnalysisProperty.builder()
                                                 .analyzer("analyzer")
                                                 .resultField("resultField")
                                                 .build())
                                         .build())
                                 .operator("operator")
                                 .build())
                         .ipExpression(IngressIpv4ExpressionProperty.builder()
                                 .evaluate(IngressIpToEvaluateProperty.builder()
                                         .attribute("attribute")
                                         .build())
                                 .operator("operator")
                                 .values(List.of("values"))
                                 .build())
                         .stringExpression(IngressStringExpressionProperty.builder()
                                 .evaluate(IngressStringToEvaluateProperty.builder()
                                         .attribute("attribute")
                                         .build())
                                 .operator("operator")
                                 .values(List.of("values"))
                                 .build())
                         .tlsExpression(IngressTlsProtocolExpressionProperty.builder()
                                 .evaluate(IngressTlsProtocolToEvaluateProperty.builder()
                                         .attribute("attribute")
                                         .build())
                                 .operator("operator")
                                 .value("value")
                                 .build())
                         .build()))
                 .build()))
         // the properties below are optional
         .maxMessageSizeBytes(123)
         .tags(List.of(CfnTag.builder()
                 .key("key")
                 .value("value")
                 .build()))
         .trafficPolicyName("trafficPolicyName")
         .build();
 

See Also: