interface IngressTlsProtocolExpressionProperty
Language | Type name |
---|---|
.NET | Amazon.CDK.AWS.SES.CfnMailManagerTrafficPolicy.IngressTlsProtocolExpressionProperty |
Go | github.com/aws/aws-cdk-go/awscdk/v2/awsses#CfnMailManagerTrafficPolicy_IngressTlsProtocolExpressionProperty |
Java | software.amazon.awscdk.services.ses.CfnMailManagerTrafficPolicy.IngressTlsProtocolExpressionProperty |
Python | aws_cdk.aws_ses.CfnMailManagerTrafficPolicy.IngressTlsProtocolExpressionProperty |
TypeScript | aws-cdk-lib » aws_ses » CfnMailManagerTrafficPolicy » 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 { aws_ses as ses } from 'aws-cdk-lib';
const ingressTlsProtocolExpressionProperty: ses.CfnMailManagerTrafficPolicy.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
The left hand side argument of a TLS condition expression.
operator
Type:
string
The matching operator for a TLS condition expression.
value
Type:
string
The right hand side argument of a TLS condition expression.