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

.NET
Go
Java
Python
TypeScript