public static interface CfnVirtualNode.ListenerTlsValidationContextProperty
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.*; ListenerTlsValidationContextProperty listenerTlsValidationContextProperty = ListenerTlsValidationContextProperty.builder() .trust(ListenerTlsValidationContextTrustProperty.builder() .file(TlsValidationContextFileTrustProperty.builder() .certificateChain("certificateChain") .build()) .sds(TlsValidationContextSdsTrustProperty.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 |
CfnVirtualNode.ListenerTlsValidationContextProperty.Builder
A builder for
CfnVirtualNode.ListenerTlsValidationContextProperty |
static class |
CfnVirtualNode.ListenerTlsValidationContextProperty.Jsii$Proxy
An implementation for
CfnVirtualNode.ListenerTlsValidationContextProperty |
Modifier and Type | Method and Description |
---|---|
static CfnVirtualNode.ListenerTlsValidationContextProperty.Builder |
builder() |
default java.lang.Object |
getSubjectAlternativeNames()
A reference to an object that represents the SANs for a 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()