Interface CfnVirtualNode.ListenerTlsValidationContextTrustProperty

All Superinterfaces:
software.amazon.jsii.JsiiSerializable
All Known Implementing Classes:
CfnVirtualNode.ListenerTlsValidationContextTrustProperty.Jsii$Proxy
Enclosing class:
CfnVirtualNode

@Stability(Stable) public static interface CfnVirtualNode.ListenerTlsValidationContextTrustProperty extends software.amazon.jsii.JsiiSerializable
An object that represents a listener's Transport Layer Security (TLS) validation context trust.

Example:

 // The code below shows an example of how to instantiate this type.
 // The values are placeholders you should change.
 import software.amazon.awscdk.services.appmesh.*;
 ListenerTlsValidationContextTrustProperty listenerTlsValidationContextTrustProperty = ListenerTlsValidationContextTrustProperty.builder()
         .file(TlsValidationContextFileTrustProperty.builder()
                 .certificateChain("certificateChain")
                 .build())
         .sds(TlsValidationContextSdsTrustProperty.builder()
                 .secretName("secretName")
                 .build())
         .build();