Interface CfnVirtualNode.ClientTlsCertificateProperty

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

@Stability(Stable) public static interface CfnVirtualNode.ClientTlsCertificateProperty extends software.amazon.jsii.JsiiSerializable
An object that represents the client's certificate.

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.*;
 ClientTlsCertificateProperty clientTlsCertificateProperty = ClientTlsCertificateProperty.builder()
         .file(ListenerTlsFileCertificateProperty.builder()
                 .certificateChain("certificateChain")
                 .privateKey("privateKey")
                 .build())
         .sds(ListenerTlsSdsCertificateProperty.builder()
                 .secretName("secretName")
                 .build())
         .build();
 

See Also: