interface IngressIpv4ExpressionProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.AWS.SES.CfnMailManagerTrafficPolicy.IngressIpv4ExpressionProperty |
Go | github.com/aws/aws-cdk-go/awscdk/v2/awsses#CfnMailManagerTrafficPolicy_IngressIpv4ExpressionProperty |
Java | software.amazon.awscdk.services.ses.CfnMailManagerTrafficPolicy.IngressIpv4ExpressionProperty |
Python | aws_cdk.aws_ses.CfnMailManagerTrafficPolicy.IngressIpv4ExpressionProperty |
TypeScript | aws-cdk-lib » aws_ses » CfnMailManagerTrafficPolicy » IngressIpv4ExpressionProperty |
The union type representing the allowed types for the left hand side of an IP 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 ingressIpv4ExpressionProperty: ses.CfnMailManagerTrafficPolicy.IngressIpv4ExpressionProperty = {
evaluate: {
attribute: 'attribute',
},
operator: 'operator',
values: ['values'],
};
Properties
| Name | Type | Description |
|---|---|---|
| evaluate | IResolvable | Ingress | The left hand side argument of an IP condition expression. |
| operator | string | The matching operator for an IP condition expression. |
| values | string[] | The right hand side argument of an IP condition expression. |
evaluate
Type:
IResolvable | Ingress
The left hand side argument of an IP condition expression.
operator
Type:
string
The matching operator for an IP condition expression.
values
Type:
string[]
The right hand side argument of an IP condition expression.

.NET
Go
Java
Python
TypeScript