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:
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classstatic final classAn implementation forCfnVirtualGateway.VirtualGatewayListenerTlsFileCertificateProperty -
Method Summary
Modifier and TypeMethodDescriptionbuilder()The certificate chain for the certificate.The private key for a certificate stored on the file system of the mesh endpoint that the proxy is running on.Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getCertificateChain
The certificate chain for the certificate.- See Also:
-
getPrivateKey
The private key for a certificate stored on the file system of the mesh endpoint that the proxy is running on.- See Also:
-
builder
@Stability(Stable) static CfnVirtualGateway.VirtualGatewayListenerTlsFileCertificateProperty.Builder builder()
-