interface RuleVerdictToEvaluateProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.CfnPropertyMixins.AWS.SES.CfnMailManagerRuleSetPropsMixin.RuleVerdictToEvaluateProperty |
Go | github.com/aws/aws-cdk-go/awscdkcfnpropertymixins/v2/awsses#CfnMailManagerRuleSetPropsMixin_RuleVerdictToEvaluateProperty |
Java | software.amazon.awscdk.cfnpropertymixins.services.ses.CfnMailManagerRuleSetPropsMixin.RuleVerdictToEvaluateProperty |
Python | aws_cdk.cfn_property_mixins.aws_ses.CfnMailManagerRuleSetPropsMixin.RuleVerdictToEvaluateProperty |
TypeScript | @aws-cdk/cfn-property-mixins » aws_ses » 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 { aws_ses as ses } from '@aws-cdk/cfn-property-mixins';
const ruleVerdictToEvaluateProperty: ses.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