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();
- See Also:
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classstatic final classAn implementation forCfnVirtualGateway.VirtualGatewayListenerTlsCertificateProperty -
Method Summary
Modifier and TypeMethodDescriptionbuilder()default ObjectgetAcm()A reference to an object that represents an AWS Certificate Manager certificate.default ObjectgetFile()A reference to an object that represents a local file certificate.default ObjectgetSds()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.- See Also:
-
getFile
A reference to an object that represents a local file certificate.- See Also:
-
getSds
A reference to an object that represents a virtual gateway's listener's Secret Discovery Service certificate.- See Also:
-
builder
@Stability(Stable) static CfnVirtualGateway.VirtualGatewayListenerTlsCertificateProperty.Builder builder()
-