Interface CfnVirtualGateway.VirtualGatewayClientTlsCertificateProperty

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

@Stability(Stable) public static interface CfnVirtualGateway.VirtualGatewayClientTlsCertificateProperty extends software.amazon.jsii.JsiiSerializable
An object that represents the virtual gateway's client's Transport Layer Security (TLS) 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.*;
 VirtualGatewayClientTlsCertificateProperty virtualGatewayClientTlsCertificateProperty = VirtualGatewayClientTlsCertificateProperty.builder()
         .file(VirtualGatewayListenerTlsFileCertificateProperty.builder()
                 .certificateChain("certificateChain")
                 .privateKey("privateKey")
                 .build())
         .sds(VirtualGatewayListenerTlsSdsCertificateProperty.builder()
                 .secretName("secretName")
                 .build())
         .build();