public static interface CfnVirtualGateway.VirtualGatewayClientTlsCertificateProperty
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 java.lang.Object |
getFile()
An object that represents a local file certificate.
|
default java.lang.Object |
getSds()
A reference to an object that represents a virtual gateway's client's Secret Discovery Service certificate.
|
default java.lang.Object getFile()
The certificate must meet specific requirements and you must have proxy authorization enabled. For more information, see Transport Layer Security (TLS) .
default java.lang.Object getSds()