Interface CfnVirtualNode.ClientTlsCertificateProperty
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnVirtualNode.ClientTlsCertificateProperty.Jsii$Proxy
- Enclosing class:
- CfnVirtualNode
@Stability(Stable)
public static interface CfnVirtualNode.ClientTlsCertificateProperty
extends software.amazon.jsii.JsiiSerializable
An object that represents the client's 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.*; ClientTlsCertificateProperty clientTlsCertificateProperty = ClientTlsCertificateProperty.builder() .file(ListenerTlsFileCertificateProperty.builder() .certificateChain("certificateChain") .privateKey("privateKey") .build()) .sds(ListenerTlsSdsCertificateProperty.builder() .secretName("secretName") .build()) .build();
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final class
A builder forCfnVirtualNode.ClientTlsCertificateProperty
static final class
An implementation forCfnVirtualNode.ClientTlsCertificateProperty
-
Method Summary
Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getFile
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) .
-
getSds
A reference to an object that represents a client's TLS Secret Discovery Service certificate. -
builder
-