interface IngressBooleanToEvaluateProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.AWS.SES.CfnMailManagerTrafficPolicy.IngressBooleanToEvaluateProperty |
Go | github.com/aws/aws-cdk-go/awscdk/v2/awsses#CfnMailManagerTrafficPolicy_IngressBooleanToEvaluateProperty |
Java | software.amazon.awscdk.services.ses.CfnMailManagerTrafficPolicy.IngressBooleanToEvaluateProperty |
Python | aws_cdk.aws_ses.CfnMailManagerTrafficPolicy.IngressBooleanToEvaluateProperty |
TypeScript | aws-cdk-lib » aws_ses » CfnMailManagerTrafficPolicy » IngressBooleanToEvaluateProperty |
The union type representing the allowed types of operands for a boolean condition.
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-lib';
const ingressBooleanToEvaluateProperty: ses.CfnMailManagerTrafficPolicy.IngressBooleanToEvaluateProperty = {
analysis: {
analyzer: 'analyzer',
resultField: 'resultField',
},
isInAddressList: {
addressLists: ['addressLists'],
attribute: 'attribute',
},
};
Properties
| Name | Type | Description |
|---|---|---|
| analysis? | IResolvable | Ingress | The structure type for a boolean condition stating the Add On ARN and its returned value. |
| is | IResolvable | Ingress | The structure type for a boolean condition that provides the address lists to evaluate incoming traffic on. |
analysis?
Type:
IResolvable | Ingress
(optional)
The structure type for a boolean condition stating the Add On ARN and its returned value.
isInAddressList?
Type:
IResolvable | Ingress
(optional)
The structure type for a boolean condition that provides the address lists to evaluate incoming traffic on.

.NET
Go
Java
Python
TypeScript