interface IngressStringExpressionProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.SES.Mixins.CfnMailManagerTrafficPolicyPropsMixin.IngressStringExpressionProperty |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awsses/mixins#CfnMailManagerTrafficPolicyPropsMixin_IngressStringExpressionProperty |
Java | software.amazon.awscdk.mixins.preview.services.ses.mixins.CfnMailManagerTrafficPolicyPropsMixin.IngressStringExpressionProperty |
Python | aws_cdk.mixins_preview.aws_ses.mixins.CfnMailManagerTrafficPolicyPropsMixin.IngressStringExpressionProperty |
TypeScript | @aws-cdk/mixins-preview » aws_ses » mixins » CfnMailManagerTrafficPolicyPropsMixin » IngressStringExpressionProperty |
The structure for a string based condition matching on the incoming mail.
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 ingressStringExpressionProperty: ses_mixins.CfnMailManagerTrafficPolicyPropsMixin.IngressStringExpressionProperty = {
evaluate: {
analysis: {
analyzer: 'analyzer',
resultField: 'resultField',
},
attribute: 'attribute',
},
operator: 'operator',
values: ['values'],
};
Properties
| Name | Type | Description |
|---|---|---|
| evaluate? | IResolvable | Ingress | The left hand side argument of a string condition expression. |
| operator? | string | |
| values? | string[] | The right hand side argument of a string condition expression. |
evaluate?
Type:
IResolvable | Ingress
(optional)
The left hand side argument of a string condition expression.
operator?
Type:
string
(optional)
values?
Type:
string[]
(optional)
The right hand side argument of a string condition expression.

.NET
Go
Java
Python
TypeScript