interface AnalysisProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.SES.Mixins.CfnMailManagerRuleSetPropsMixin.AnalysisProperty |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awsses/mixins#CfnMailManagerRuleSetPropsMixin_AnalysisProperty |
Java | software.amazon.awscdk.mixins.preview.services.ses.mixins.CfnMailManagerRuleSetPropsMixin.AnalysisProperty |
Python | aws_cdk.mixins_preview.aws_ses.mixins.CfnMailManagerRuleSetPropsMixin.AnalysisProperty |
TypeScript | @aws-cdk/mixins-preview » aws_ses » mixins » CfnMailManagerRuleSetPropsMixin » AnalysisProperty |
The result of an analysis can be used in conditions to trigger actions.
Analyses can inspect the email content and report a certain aspect of the email.
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 analysisProperty: ses_mixins.CfnMailManagerRuleSetPropsMixin.AnalysisProperty = {
analyzer: 'analyzer',
resultField: 'resultField',
};
Properties
| Name | Type | Description |
|---|---|---|
| analyzer? | string | The Amazon Resource Name (ARN) of an Add On. |
| result | string | The returned value from an Add On. |
analyzer?
Type:
string
(optional)
The Amazon Resource Name (ARN) of an Add On.
resultField?
Type:
string
(optional)
The returned value from an Add On.

.NET
Go
Java
Python
TypeScript