Interface CfnMailManagerTrafficPolicyPropsMixin.IngressStringExpressionProperty
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnMailManagerTrafficPolicyPropsMixin.IngressStringExpressionProperty.Jsii$Proxy
- Enclosing class:
CfnMailManagerTrafficPolicyPropsMixin
@Stability(Stable)
public static interface CfnMailManagerTrafficPolicyPropsMixin.IngressStringExpressionProperty
extends software.amazon.jsii.JsiiSerializable
The structure for a string based condition matching on the incoming mail.
Example:
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import software.amazon.awscdk.cfnpropertymixins.services.ses.*;
IngressStringExpressionProperty ingressStringExpressionProperty = IngressStringExpressionProperty.builder()
.evaluate(IngressStringToEvaluateProperty.builder()
.analysis(IngressAnalysisProperty.builder()
.analyzer("analyzer")
.resultField("resultField")
.build())
.attribute("attribute")
.build())
.operator("operator")
.values(List.of("values"))
.build();
- See Also:
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classstatic final classAn implementation forCfnMailManagerTrafficPolicyPropsMixin.IngressStringExpressionProperty -
Method Summary
Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getEvaluate
The left hand side argument of a string condition expression.Returns union: either
IResolvableorCfnMailManagerTrafficPolicyPropsMixin.IngressStringToEvaluateProperty- See Also:
-
getOperator
- See Also:
-
getValues
The right hand side argument of a string condition expression.- See Also:
-
builder
@Stability(Stable) static CfnMailManagerTrafficPolicyPropsMixin.IngressStringExpressionProperty.Builder builder()
-