interface IngressIpv6ExpressionProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.SES.Mixins.CfnMailManagerTrafficPolicyPropsMixin.IngressIpv6ExpressionProperty |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awsses/mixins#CfnMailManagerTrafficPolicyPropsMixin_IngressIpv6ExpressionProperty |
Java | software.amazon.awscdk.mixins.preview.services.ses.mixins.CfnMailManagerTrafficPolicyPropsMixin.IngressIpv6ExpressionProperty |
Python | aws_cdk.mixins_preview.aws_ses.mixins.CfnMailManagerTrafficPolicyPropsMixin.IngressIpv6ExpressionProperty |
TypeScript | @aws-cdk/mixins-preview » aws_ses » mixins » CfnMailManagerTrafficPolicyPropsMixin » IngressIpv6ExpressionProperty |
The union type representing the allowed types for the left hand side of an IPv6 condition.
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 ingressIpv6ExpressionProperty: ses_mixins.CfnMailManagerTrafficPolicyPropsMixin.IngressIpv6ExpressionProperty = {
evaluate: {
attribute: 'attribute',
},
operator: 'operator',
values: ['values'],
};
Properties
| Name | Type | Description |
|---|---|---|
| evaluate? | IResolvable | Ingress | The left hand side argument of an IPv6 condition expression. |
| operator? | string | The matching operator for an IPv6 condition expression. |
| values? | string[] | The right hand side argument of an IPv6 condition expression. |
evaluate?
Type:
IResolvable | Ingress
(optional)
The left hand side argument of an IPv6 condition expression.
operator?
Type:
string
(optional)
The matching operator for an IPv6 condition expression.
values?
Type:
string[]
(optional)
The right hand side argument of an IPv6 condition expression.

.NET
Go
Java
Python
TypeScript