Interface CfnVirtualGateway.VirtualGatewayListenerTlsCertificateProperty
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnVirtualGateway.VirtualGatewayListenerTlsCertificateProperty.Jsii$Proxy
- Enclosing class:
CfnVirtualGateway
@Stability(Stable)
public static interface CfnVirtualGateway.VirtualGatewayListenerTlsCertificateProperty
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.*; VirtualGatewayListenerTlsCertificateProperty virtualGatewayListenerTlsCertificateProperty = VirtualGatewayListenerTlsCertificateProperty.builder() .acm(VirtualGatewayListenerTlsAcmCertificateProperty.builder() .certificateArn("certificateArn") .build()) .file(VirtualGatewayListenerTlsFileCertificateProperty.builder() .certificateChain("certificateChain") .privateKey("privateKey") .build()) .sds(VirtualGatewayListenerTlsSdsCertificateProperty.builder() .secretName("secretName") .build()) .build();
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final class
static final class
An implementation forCfnVirtualGateway.VirtualGatewayListenerTlsCertificateProperty
-
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 virtual gateway's 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 virtual gateway's listener's Secret Discovery Service certificate. -
builder
@Stability(Stable) static CfnVirtualGateway.VirtualGatewayListenerTlsCertificateProperty.Builder builder()
-