Show / Hide Table of Contents

Class CfnMailManagerRuleSetPropsMixin.RuleBooleanExpressionProperty

A boolean expression to be used in a rule condition.

Inheritance
object
CfnMailManagerRuleSetPropsMixin.RuleBooleanExpressionProperty
Implements
CfnMailManagerRuleSetPropsMixin.IRuleBooleanExpressionProperty
Inherited Members
object.GetType()
object.MemberwiseClone()
object.ToString()
object.Equals(object)
object.Equals(object, object)
object.ReferenceEquals(object, object)
object.GetHashCode()
Namespace: Amazon.CDK.CfnPropertyMixins.AWS.SES
Assembly: Amazon.CDK.CfnPropertyMixins.dll
Syntax (csharp)
public class CfnMailManagerRuleSetPropsMixin.RuleBooleanExpressionProperty : CfnMailManagerRuleSetPropsMixin.IRuleBooleanExpressionProperty
Syntax (vb)
Public Class CfnMailManagerRuleSetPropsMixin.RuleBooleanExpressionProperty Implements CfnMailManagerRuleSetPropsMixin.IRuleBooleanExpressionProperty
Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ses-mailmanagerruleset-rulebooleanexpression.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.CfnPropertyMixins.AWS.SES;

             var ruleBooleanExpressionProperty = new RuleBooleanExpressionProperty {
                 Evaluate = new RuleBooleanToEvaluateProperty {
                     Analysis = new AnalysisProperty {
                         Analyzer = "analyzer",
                         ResultField = "resultField"
                     },
                     Attribute = "attribute",
                     IsInAddressList = new RuleIsInAddressListProperty {
                         AddressLists = new [] { "addressLists" },
                         Attribute = "attribute"
                     }
                 },
                 Operator = "operator"
             };

Synopsis

Constructors

RuleBooleanExpressionProperty()

A boolean expression to be used in a rule condition.

Properties

Evaluate

The operand on which to perform a boolean condition operation.

Operator

The matching operator for a boolean condition expression.

Constructors

RuleBooleanExpressionProperty()

A boolean expression to be used in a rule condition.

public RuleBooleanExpressionProperty()
Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ses-mailmanagerruleset-rulebooleanexpression.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.CfnPropertyMixins.AWS.SES;

             var ruleBooleanExpressionProperty = new RuleBooleanExpressionProperty {
                 Evaluate = new RuleBooleanToEvaluateProperty {
                     Analysis = new AnalysisProperty {
                         Analyzer = "analyzer",
                         ResultField = "resultField"
                     },
                     Attribute = "attribute",
                     IsInAddressList = new RuleIsInAddressListProperty {
                         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-mailmanagerruleset-rulebooleanexpression.html#cfn-ses-mailmanagerruleset-rulebooleanexpression-evaluate

Type union: either IResolvable or CfnMailManagerRuleSetPropsMixin.IRuleBooleanToEvaluateProperty

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-mailmanagerruleset-rulebooleanexpression.html#cfn-ses-mailmanagerruleset-rulebooleanexpression-operator

Implements

CfnMailManagerRuleSetPropsMixin.IRuleBooleanExpressionProperty
Back to top Generated by DocFX