@Stability(value=Stable)
public static interface CfnVirtualGateway.VirtualGatewayClientTlsCertificateProperty
extends software.amazon.jsii.JsiiSerializable
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();
| Modifier and Type | Interface and Description |
|---|---|
static class |
CfnVirtualGateway.VirtualGatewayClientTlsCertificateProperty.Builder
|
static class |
CfnVirtualGateway.VirtualGatewayClientTlsCertificateProperty.Jsii$Proxy
An implementation for
CfnVirtualGateway.VirtualGatewayClientTlsCertificateProperty |
| Modifier and Type | Method and Description |
|---|---|
static CfnVirtualGateway.VirtualGatewayClientTlsCertificateProperty.Builder |
builder() |
default Object |
getFile()
An object that represents a local file certificate.
|
default Object |
getSds()
A reference to an object that represents a virtual gateway's client's Secret Discovery Service certificate.
|
@Stability(value=Stable) @Nullable default Object getFile()
The certificate must meet specific requirements and you must have proxy authorization enabled. For more information, see Transport Layer Security (TLS) .
@Stability(value=Stable) @Nullable default Object getSds()
@Stability(value=Stable) static CfnVirtualGateway.VirtualGatewayClientTlsCertificateProperty.Builder builder()
Copyright © 2022. All rights reserved.