interface RuleVerdictToEvaluateProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.SES.Mixins.CfnMailManagerRuleSetPropsMixin.RuleVerdictToEvaluateProperty |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awsses/mixins#CfnMailManagerRuleSetPropsMixin_RuleVerdictToEvaluateProperty |
Java | software.amazon.awscdk.mixins.preview.services.ses.mixins.CfnMailManagerRuleSetPropsMixin.RuleVerdictToEvaluateProperty |
Python | aws_cdk.mixins_preview.aws_ses.mixins.CfnMailManagerRuleSetPropsMixin.RuleVerdictToEvaluateProperty |
TypeScript | @aws-cdk/mixins-preview » aws_ses » mixins » CfnMailManagerRuleSetPropsMixin » RuleVerdictToEvaluateProperty |
The verdict to evaluate in a verdict condition expression.
This data type is a UNION, so only one of the following members can be specified when used or returned.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { mixins as ses_mixins } from '@aws-cdk/mixins-preview/aws-ses';
const ruleVerdictToEvaluateProperty: ses_mixins.CfnMailManagerRuleSetPropsMixin.RuleVerdictToEvaluateProperty = {
analysis: {
analyzer: 'analyzer',
resultField: 'resultField',
},
attribute: 'attribute',
};
Properties
| Name | Type | Description |
|---|---|---|
| analysis? | IResolvable | Analysis | The Add On ARN and its returned value to evaluate in a verdict condition expression. |
| attribute? | string | The email verdict attribute to evaluate in a string verdict expression. |
analysis?
Type:
IResolvable | Analysis
(optional)
The Add On ARN and its returned value to evaluate in a verdict condition expression.
attribute?
Type:
string
(optional)
The email verdict attribute to evaluate in a string verdict expression.

.NET
Go
Java
Python
TypeScript