interface RuleBooleanToEvaluateProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.AWS.SES.CfnMailManagerRuleSet.RuleBooleanToEvaluateProperty |
Go | github.com/aws/aws-cdk-go/awscdk/v2/awsses#CfnMailManagerRuleSet_RuleBooleanToEvaluateProperty |
Java | software.amazon.awscdk.services.ses.CfnMailManagerRuleSet.RuleBooleanToEvaluateProperty |
Python | aws_cdk.aws_ses.CfnMailManagerRuleSet.RuleBooleanToEvaluateProperty |
TypeScript | aws-cdk-lib » aws_ses » CfnMailManagerRuleSet » RuleBooleanToEvaluateProperty |
The union type representing the allowed types of operands for a boolean condition.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { aws_ses as ses } from 'aws-cdk-lib';
const ruleBooleanToEvaluateProperty: ses.CfnMailManagerRuleSet.RuleBooleanToEvaluateProperty = {
analysis: {
analyzer: 'analyzer',
resultField: 'resultField',
},
attribute: 'attribute',
isInAddressList: {
addressLists: ['addressLists'],
attribute: 'attribute',
},
};
Properties
| Name | Type | Description |
|---|---|---|
| analysis? | IResolvable | Analysis | The Add On ARN and its returned value to evaluate in a boolean condition expression. |
| attribute? | string | The boolean type representing the allowed attribute types for an email. |
| is | IResolvable | Rule | The structure representing the address lists and address list attribute that will be used in evaluation of boolean expression. |
analysis?
Type:
IResolvable | Analysis
(optional)
The Add On ARN and its returned value to evaluate in a boolean condition expression.
attribute?
Type:
string
(optional)
The boolean type representing the allowed attribute types for an email.
isInAddressList?
Type:
IResolvable | Rule
(optional)
The structure representing the address lists and address list attribute that will be used in evaluation of boolean expression.

.NET
Go
Java
Python
TypeScript