Class CfnMailManagerTrafficPolicyPropsMixin.IngressTlsProtocolExpressionProperty
The structure for a TLS related condition matching on the incoming mail.
Inherited Members
Namespace: Amazon.CDK.CfnPropertyMixins.AWS.SES
Assembly: Amazon.CDK.CfnPropertyMixins.dll
Syntax (csharp)
public class CfnMailManagerTrafficPolicyPropsMixin.IngressTlsProtocolExpressionProperty : CfnMailManagerTrafficPolicyPropsMixin.IIngressTlsProtocolExpressionProperty
Syntax (vb)
Public Class CfnMailManagerTrafficPolicyPropsMixin.IngressTlsProtocolExpressionProperty Implements CfnMailManagerTrafficPolicyPropsMixin.IIngressTlsProtocolExpressionProperty
Remarks
ExampleMetadata: fixture=_generated
Examples
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
using Amazon.CDK.CfnPropertyMixins.AWS.SES;
var ingressTlsProtocolExpressionProperty = new IngressTlsProtocolExpressionProperty {
Evaluate = new IngressTlsProtocolToEvaluateProperty {
Attribute = "attribute"
},
Operator = "operator",
Value = "value"
};
Synopsis
Constructors
| IngressTlsProtocolExpressionProperty() | The structure for a TLS related condition matching on the incoming mail. |
Properties
| Evaluate | The left hand side argument of a TLS condition expression. |
| Operator | The matching operator for a TLS condition expression. |
| Value | The right hand side argument of a TLS condition expression. |
Constructors
IngressTlsProtocolExpressionProperty()
The structure for a TLS related condition matching on the incoming mail.
public IngressTlsProtocolExpressionProperty()
Remarks
ExampleMetadata: fixture=_generated
Examples
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
using Amazon.CDK.CfnPropertyMixins.AWS.SES;
var ingressTlsProtocolExpressionProperty = new IngressTlsProtocolExpressionProperty {
Evaluate = new IngressTlsProtocolToEvaluateProperty {
Attribute = "attribute"
},
Operator = "operator",
Value = "value"
};
Properties
Evaluate
The left hand side argument of a TLS condition expression.
public object? Evaluate { get; set; }
Property Value
Remarks
Type union: either IResolvable or CfnMailManagerTrafficPolicyPropsMixin.IIngressTlsProtocolToEvaluateProperty
Operator
The matching operator for a TLS condition expression.
public string? Operator { get; set; }
Property Value
Remarks
Value
The right hand side argument of a TLS condition expression.
public string? Value { get; set; }