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