Interface CfnVirtualNode.ListenerTlsFileCertificateProperty
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnVirtualNode.ListenerTlsFileCertificateProperty.Jsii$Proxy
- Enclosing class:
CfnVirtualNode
@Stability(Stable)
public static interface CfnVirtualNode.ListenerTlsFileCertificateProperty
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.*;
ListenerTlsFileCertificateProperty listenerTlsFileCertificateProperty = ListenerTlsFileCertificateProperty.builder()
.certificateChain("certificateChain")
.privateKey("privateKey")
.build();
- See Also:
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classA builder forCfnVirtualNode.ListenerTlsFileCertificatePropertystatic final classAn implementation forCfnVirtualNode.ListenerTlsFileCertificateProperty -
Method Summary
Modifier and TypeMethodDescriptionbuilder()The certificate chain for the certificate.The private key for a certificate stored on the file system of the virtual node 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 virtual node that the proxy is running on.- See Also:
-
builder
-