Interface CfnMailManagerRuleSet.IRuleBooleanToEvaluateProperty
The union type representing the allowed types of operands for a boolean condition.
Namespace: Amazon.CDK.AWS.SES
Assembly: Amazon.CDK.Lib.dll
Syntax (csharp)
public interface CfnMailManagerRuleSet.IRuleBooleanToEvaluateProperty
Syntax (vb)
Public Interface 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
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. |
Properties
Analysis
The Add On ARN and its returned value to evaluate in a boolean condition expression.
object? Analysis { get; }
Property Value
Remarks
Attribute
The boolean type representing the allowed attribute types for an email.
string? Attribute { get; }
Property Value
Remarks
IsInAddressList
The structure representing the address lists and address list attribute that will be used in evaluation of boolean expression.
object? IsInAddressList { get; }