Show / Hide Table of Contents

Class CfnMailManagerTrafficPolicy.IngressStringExpressionProperty

The structure for a string based condition matching on the incoming mail.

Inheritance
object
CfnMailManagerTrafficPolicy.IngressStringExpressionProperty
Implements
CfnMailManagerTrafficPolicy.IIngressStringExpressionProperty
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.IngressStringExpressionProperty : CfnMailManagerTrafficPolicy.IIngressStringExpressionProperty
Syntax (vb)
Public Class CfnMailManagerTrafficPolicy.IngressStringExpressionProperty Implements CfnMailManagerTrafficPolicy.IIngressStringExpressionProperty
Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ses-mailmanagertrafficpolicy-ingressstringexpression.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 ingressStringExpressionProperty = new IngressStringExpressionProperty {
                 Evaluate = new IngressStringToEvaluateProperty {
                     Analysis = new IngressAnalysisProperty {
                         Analyzer = "analyzer",
                         ResultField = "resultField"
                     },
                     Attribute = "attribute"
                 },
                 Operator = "operator",
                 Values = new [] { "values" }
             };

Synopsis

Constructors

IngressStringExpressionProperty()

The structure for a string based condition matching on the incoming mail.

Properties

Evaluate

The left hand side argument of a string condition expression.

Operator

The structure for a string based condition matching on the incoming mail.

Values

The right hand side argument of a string condition expression.

Constructors

IngressStringExpressionProperty()

The structure for a string based condition matching on the incoming mail.

public IngressStringExpressionProperty()
Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ses-mailmanagertrafficpolicy-ingressstringexpression.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 ingressStringExpressionProperty = new IngressStringExpressionProperty {
                 Evaluate = new IngressStringToEvaluateProperty {
                     Analysis = new IngressAnalysisProperty {
                         Analyzer = "analyzer",
                         ResultField = "resultField"
                     },
                     Attribute = "attribute"
                 },
                 Operator = "operator",
                 Values = new [] { "values" }
             };

Properties

Evaluate

The left hand side argument of a string condition expression.

public object Evaluate { get; set; }
Property Value

object

Remarks

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

Operator

The structure for a string based condition matching on the incoming mail.

public string Operator { get; set; }
Property Value

string

Remarks

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

Values

The right hand side argument of a string condition expression.

public string[] Values { get; set; }
Property Value

string[]

Remarks

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

Implements

CfnMailManagerTrafficPolicy.IIngressStringExpressionProperty
Back to top Generated by DocFX