Show / Hide Table of Contents

Interface CfnMailManagerTrafficPolicy.IIngressBooleanExpressionProperty

The structure for a boolean condition matching on the incoming mail.

Namespace: Amazon.CDK.AWS.SES
Assembly: Amazon.CDK.Lib.dll
Syntax (csharp)
public interface CfnMailManagerTrafficPolicy.IIngressBooleanExpressionProperty
Syntax (vb)
Public Interface CfnMailManagerTrafficPolicy.IIngressBooleanExpressionProperty
Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ses-mailmanagertrafficpolicy-ingressbooleanexpression.html

ExampleMetadata: fixture=_generated

Examples
// The code below shows an example of how to instantiate this type.
             // The values are placeholders you should change.
             using Amazon.CDK.AWS.SES;

             var ingressBooleanExpressionProperty = new IngressBooleanExpressionProperty {
                 Evaluate = new IngressBooleanToEvaluateProperty {
                     Analysis = new IngressAnalysisProperty {
                         Analyzer = "analyzer",
                         ResultField = "resultField"
                     },
                     IsInAddressList = new IngressIsInAddressListProperty {
                         AddressLists = new [] { "addressLists" },
                         Attribute = "attribute"
                     }
                 },
                 Operator = "operator"
             };

Synopsis

Properties

Evaluate

The operand on which to perform a boolean condition operation.

Operator

The matching operator for a boolean condition expression.

Properties

Evaluate

The operand on which to perform a boolean condition operation.

object Evaluate { get; }
Property Value

object

Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ses-mailmanagertrafficpolicy-ingressbooleanexpression.html#cfn-ses-mailmanagertrafficpolicy-ingressbooleanexpression-evaluate

Operator

The matching operator for a boolean condition expression.

string Operator { get; }
Property Value

string

Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ses-mailmanagertrafficpolicy-ingressbooleanexpression.html#cfn-ses-mailmanagertrafficpolicy-ingressbooleanexpression-operator

Back to top Generated by DocFX