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"
};
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. |
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"
};
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; }