Interface CfnVirtualNode.ListenerTlsCertificateProperty
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnVirtualNode.ListenerTlsCertificateProperty.Jsii$Proxy
- Enclosing class:
CfnVirtualNode
@Stability(Stable)
public static interface CfnVirtualNode.ListenerTlsCertificateProperty
extends software.amazon.jsii.JsiiSerializable
An object that represents a listener's Transport Layer Security (TLS) 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.*; ListenerTlsCertificateProperty listenerTlsCertificateProperty = ListenerTlsCertificateProperty.builder() .acm(ListenerTlsAcmCertificateProperty.builder() .certificateArn("certificateArn") .build()) .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.ListenerTlsCertificateProperty
static final class
An implementation forCfnVirtualNode.ListenerTlsCertificateProperty
-
Method Summary
Modifier and TypeMethodDescriptionbuilder()
default Object
getAcm()
A reference to an object that represents an AWS Certificate Manager certificate.default Object
getFile()
A reference to an object that represents a local file certificate.default Object
getSds()
A reference to an object that represents a listener's Secret Discovery Service certificate.Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getAcm
A reference to an object that represents an AWS Certificate Manager certificate. -
getFile
A reference to an object that represents a local file certificate. -
getSds
A reference to an object that represents a listener's Secret Discovery Service certificate. -
builder
-