Interface CfnVirtualGateway.VirtualGatewayClientTlsCertificateProperty
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnVirtualGateway.VirtualGatewayClientTlsCertificateProperty.Jsii$Proxy
- Enclosing class:
CfnVirtualGateway
@Stability(Stable)
public static interface CfnVirtualGateway.VirtualGatewayClientTlsCertificateProperty
extends software.amazon.jsii.JsiiSerializable
An object that represents the virtual gateway's client'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.*;
VirtualGatewayClientTlsCertificateProperty virtualGatewayClientTlsCertificateProperty = VirtualGatewayClientTlsCertificateProperty.builder()
.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.VirtualGatewayClientTlsCertificateProperty -
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) .
Returns union: either
IResolvableorCfnVirtualGateway.VirtualGatewayListenerTlsFileCertificateProperty- See Also:
-
getSds
A reference to an object that represents a virtual gateway's client's Secret Discovery Service certificate.Returns union: either
IResolvableorCfnVirtualGateway.VirtualGatewayListenerTlsSdsCertificateProperty- See Also:
-
builder
@Stability(Stable) static CfnVirtualGateway.VirtualGatewayClientTlsCertificateProperty.Builder builder()
-