public static interface CfnVirtualGateway.VirtualGatewayListenerTlsFileCertificateProperty
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();
Modifier and Type | Interface and Description |
---|---|
static class |
CfnVirtualGateway.VirtualGatewayListenerTlsFileCertificateProperty.Builder
|
static class |
CfnVirtualGateway.VirtualGatewayListenerTlsFileCertificateProperty.Jsii$Proxy
An implementation for
CfnVirtualGateway.VirtualGatewayListenerTlsFileCertificateProperty |
Modifier and Type | Method and Description |
---|---|
static CfnVirtualGateway.VirtualGatewayListenerTlsFileCertificateProperty.Builder |
builder() |
java.lang.String |
getCertificateChain()
The certificate chain for the certificate.
|
java.lang.String |
getPrivateKey()
The private key for a certificate stored on the file system of the mesh endpoint that the proxy is running on.
|