interface IngressBooleanExpressionProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.SES.Mixins.CfnMailManagerTrafficPolicyPropsMixin.IngressBooleanExpressionProperty |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awsses/mixins#CfnMailManagerTrafficPolicyPropsMixin_IngressBooleanExpressionProperty |
Java | software.amazon.awscdk.mixins.preview.services.ses.mixins.CfnMailManagerTrafficPolicyPropsMixin.IngressBooleanExpressionProperty |
Python | aws_cdk.mixins_preview.aws_ses.mixins.CfnMailManagerTrafficPolicyPropsMixin.IngressBooleanExpressionProperty |
TypeScript | @aws-cdk/mixins-preview » aws_ses » mixins » CfnMailManagerTrafficPolicyPropsMixin » IngressBooleanExpressionProperty |
The structure for a boolean 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 ingressBooleanExpressionProperty: ses_mixins.CfnMailManagerTrafficPolicyPropsMixin.IngressBooleanExpressionProperty = {
evaluate: {
analysis: {
analyzer: 'analyzer',
resultField: 'resultField',
},
isInAddressList: {
addressLists: ['addressLists'],
attribute: 'attribute',
},
},
operator: 'operator',
};
Properties
| Name | Type | Description |
|---|---|---|
| evaluate? | IResolvable | Ingress | The operand on which to perform a boolean condition operation. |
| operator? | string | The matching operator for a boolean condition expression. |
evaluate?
Type:
IResolvable | Ingress
(optional)
The operand on which to perform a boolean condition operation.
operator?
Type:
string
(optional)
The matching operator for a boolean condition expression.

.NET
Go
Java
Python
TypeScript