Interface CfnVirtualNode.ListenerTlsValidationContextProperty
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnVirtualNode.ListenerTlsValidationContextProperty.Jsii$Proxy
- Enclosing class:
CfnVirtualNode
@Stability(Stable)
public static interface CfnVirtualNode.ListenerTlsValidationContextProperty
extends software.amazon.jsii.JsiiSerializable
An object that represents a listener's Transport Layer Security (TLS) validation context.
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();
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final class
A builder forCfnVirtualNode.ListenerTlsValidationContextProperty
static final class
An implementation forCfnVirtualNode.ListenerTlsValidationContextProperty
-
Method Summary
Modifier and TypeMethodDescriptionbuilder()
default Object
A reference to an object that represents the SANs for a listener's Transport Layer Security (TLS) validation context.getTrust()
A reference to where to retrieve the trust chain when validating a peer’s Transport Layer Security (TLS) certificate.Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getTrust
A reference to where to retrieve the trust chain when validating a peer’s Transport Layer Security (TLS) certificate. -
getSubjectAlternativeNames
A reference to an object that represents the SANs for a listener's Transport Layer Security (TLS) validation context. -
builder
-