Interface CfnVirtualGateway.VirtualGatewayListenerTlsFileCertificateProperty

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

@Stability(Stable) public static interface CfnVirtualGateway.VirtualGatewayListenerTlsFileCertificateProperty extends software.amazon.jsii.JsiiSerializable
An object that represents a local file certificate.

The certificate must meet specific requirements and you must have proxy authorization enabled. For more information, see Transport Layer Security (TLS) .

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.*;
 VirtualGatewayListenerTlsFileCertificateProperty virtualGatewayListenerTlsFileCertificateProperty = VirtualGatewayListenerTlsFileCertificateProperty.builder()
         .certificateChain("certificateChain")
         .privateKey("privateKey")
         .build();
 

See Also: