Class CfnVirtualNode.ListenerTlsValidationContextProperty
An object that represents a listener's Transport Layer Security (TLS) validation context.
Inheritance
System.Object
CfnVirtualNode.ListenerTlsValidationContextProperty
Namespace: Amazon.CDK.AWS.AppMesh
Assembly: Amazon.CDK.Lib.dll
Syntax (csharp)
public class ListenerTlsValidationContextProperty : Object, CfnVirtualNode.IListenerTlsValidationContextProperty
Syntax (vb)
Public Class ListenerTlsValidationContextProperty
Inherits Object
Implements CfnVirtualNode.IListenerTlsValidationContextProperty
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.AWS.AppMesh;
var listenerTlsValidationContextProperty = new ListenerTlsValidationContextProperty {
Trust = new ListenerTlsValidationContextTrustProperty {
File = new TlsValidationContextFileTrustProperty {
CertificateChain = "certificateChain"
},
Sds = new TlsValidationContextSdsTrustProperty {
SecretName = "secretName"
}
},
// the properties below are optional
SubjectAlternativeNames = new SubjectAlternativeNamesProperty {
Match = new SubjectAlternativeNameMatchersProperty {
Exact = new [] { "exact" }
}
}
};
Synopsis
Constructors
ListenerTlsValidationContextProperty() |
Properties
SubjectAlternativeNames | A reference to an object that represents the SANs for a listener's Transport Layer Security (TLS) validation context. |
Trust | A reference to where to retrieve the trust chain when validating a peer’s Transport Layer Security (TLS) certificate. |
Constructors
ListenerTlsValidationContextProperty()
public ListenerTlsValidationContextProperty()
Properties
SubjectAlternativeNames
A reference to an object that represents the SANs for a listener's Transport Layer Security (TLS) validation context.
public object SubjectAlternativeNames { get; set; }
Property Value
System.Object
Remarks
Trust
A reference to where to retrieve the trust chain when validating a peer’s Transport Layer Security (TLS) certificate.
public object Trust { get; set; }
Property Value
System.Object