public static interface CfnVirtualGateway.VirtualGatewayListenerTlsValidationContextProperty
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.*; VirtualGatewayListenerTlsValidationContextProperty virtualGatewayListenerTlsValidationContextProperty = VirtualGatewayListenerTlsValidationContextProperty.builder() .trust(VirtualGatewayListenerTlsValidationContextTrustProperty.builder() .file(VirtualGatewayTlsValidationContextFileTrustProperty.builder() .certificateChain("certificateChain") .build()) .sds(VirtualGatewayTlsValidationContextSdsTrustProperty.builder() .secretName("secretName") .build()) .build()) // the properties below are optional .subjectAlternativeNames(SubjectAlternativeNamesProperty.builder() .match(SubjectAlternativeNameMatchersProperty.builder() .exact(List.of("exact")) .build()) .build()) .build();
Modifier and Type | Interface and Description |
---|---|
static class |
CfnVirtualGateway.VirtualGatewayListenerTlsValidationContextProperty.Builder
|
static class |
CfnVirtualGateway.VirtualGatewayListenerTlsValidationContextProperty.Jsii$Proxy
An implementation for
CfnVirtualGateway.VirtualGatewayListenerTlsValidationContextProperty |
Modifier and Type | Method and Description |
---|---|
static CfnVirtualGateway.VirtualGatewayListenerTlsValidationContextProperty.Builder |
builder() |
default java.lang.Object |
getSubjectAlternativeNames()
A reference to an object that represents the SANs for a virtual gateway listener's Transport Layer Security (TLS) validation context.
|
java.lang.Object |
getTrust()
A reference to where to retrieve the trust chain when validating a peer’s Transport Layer Security (TLS) certificate.
|
java.lang.Object getTrust()
default java.lang.Object getSubjectAlternativeNames()