Class CfnMailManagerRuleSet.RuleBooleanToEvaluateProperty
The union type representing the allowed types of operands for a boolean condition.
Inherited Members
Namespace: Amazon.CDK.AWS.SES
Assembly: Amazon.CDK.Lib.dll
Syntax (csharp)
public class CfnMailManagerRuleSet.RuleBooleanToEvaluateProperty : CfnMailManagerRuleSet.IRuleBooleanToEvaluateProperty
  Syntax (vb)
Public Class CfnMailManagerRuleSet.RuleBooleanToEvaluateProperty Implements CfnMailManagerRuleSet.IRuleBooleanToEvaluateProperty
  Remarks
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 ruleBooleanToEvaluateProperty = new RuleBooleanToEvaluateProperty {
                 Analysis = new AnalysisProperty {
                     Analyzer = "analyzer",
                     ResultField = "resultField"
                 },
                 Attribute = "attribute",
                 IsInAddressList = new RuleIsInAddressListProperty {
                     AddressLists = new [] { "addressLists" },
                     Attribute = "attribute"
                 }
             };
  Synopsis
Constructors
| RuleBooleanToEvaluateProperty() | The union type representing the allowed types of operands for a boolean condition.  | 
      
Properties
| Analysis | The Add On ARN and its returned value to evaluate in a boolean condition expression.  | 
      
| Attribute | The boolean type representing the allowed attribute types for an email.  | 
      
| IsInAddressList | The structure representing the address lists and address list attribute that will be used in evaluation of boolean expression.  | 
      
Constructors
RuleBooleanToEvaluateProperty()
The union type representing the allowed types of operands for a boolean condition.
public RuleBooleanToEvaluateProperty()
  Remarks
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 ruleBooleanToEvaluateProperty = new RuleBooleanToEvaluateProperty {
                 Analysis = new AnalysisProperty {
                     Analyzer = "analyzer",
                     ResultField = "resultField"
                 },
                 Attribute = "attribute",
                 IsInAddressList = new RuleIsInAddressListProperty {
                     AddressLists = new [] { "addressLists" },
                     Attribute = "attribute"
                 }
             };
  Properties
Analysis
The Add On ARN and its returned value to evaluate in a boolean condition expression.
public object? Analysis { get; set; }
  Property Value
Remarks
Attribute
The boolean type representing the allowed attribute types for an email.
public string? Attribute { get; set; }
  Property Value
Remarks
IsInAddressList
The structure representing the address lists and address list attribute that will be used in evaluation of boolean expression.
public object? IsInAddressList { get; set; }