Show / Hide Table of Contents

Class CfnMailManagerTrafficPolicy.IngressBooleanExpressionProperty

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

Inheritance
object
CfnMailManagerTrafficPolicy.IngressBooleanExpressionProperty
Implements
CfnMailManagerTrafficPolicy.IIngressBooleanExpressionProperty
Inherited Members
object.GetType()
object.MemberwiseClone()
object.ToString()
object.Equals(object)
object.Equals(object, object)
object.ReferenceEquals(object, object)
object.GetHashCode()
Namespace: Amazon.CDK.AWS.SES
Assembly: Amazon.CDK.Lib.dll
Syntax (csharp)
public class CfnMailManagerTrafficPolicy.IngressBooleanExpressionProperty : CfnMailManagerTrafficPolicy.IIngressBooleanExpressionProperty
Syntax (vb)
Public Class CfnMailManagerTrafficPolicy.IngressBooleanExpressionProperty Implements 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

Constructors

IngressBooleanExpressionProperty()

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

Properties

Evaluate

The operand on which to perform a boolean condition operation.

Operator

The matching operator for a boolean condition expression.

Constructors

IngressBooleanExpressionProperty()

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

public IngressBooleanExpressionProperty()
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"
             };

Properties

Evaluate

The operand on which to perform a boolean condition operation.

public object Evaluate { get; set; }
Property Value

object

Remarks

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

Type union: either IResolvable or CfnMailManagerTrafficPolicy.IIngressBooleanToEvaluateProperty

Operator

The matching operator for a boolean condition expression.

public string Operator { get; set; }
Property Value

string

Remarks

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

Implements

CfnMailManagerTrafficPolicy.IIngressBooleanExpressionProperty
Back to top Generated by DocFX