Interface CfnVirtualNode.ListenerTlsValidationContextTrustProperty
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnVirtualNode.ListenerTlsValidationContextTrustProperty.Jsii$Proxy
- Enclosing class:
CfnVirtualNode
@Stability(Stable)
public static interface CfnVirtualNode.ListenerTlsValidationContextTrustProperty
extends software.amazon.jsii.JsiiSerializable
An object that represents a listener's Transport Layer Security (TLS) validation context trust.
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.*;
ListenerTlsValidationContextTrustProperty listenerTlsValidationContextTrustProperty = ListenerTlsValidationContextTrustProperty.builder()
.file(TlsValidationContextFileTrustProperty.builder()
.certificateChain("certificateChain")
.build())
.sds(TlsValidationContextSdsTrustProperty.builder()
.secretName("secretName")
.build())
.build();
- See Also:
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classA builder forCfnVirtualNode.ListenerTlsValidationContextTrustPropertystatic final classAn implementation forCfnVirtualNode.ListenerTlsValidationContextTrustProperty -
Method Summary
Modifier and TypeMethodDescriptionbuilder()default ObjectgetFile()An object that represents a Transport Layer Security (TLS) validation context trust for a local file.default ObjectgetSds()A reference to an object that represents a listener's Transport Layer Security (TLS) Secret Discovery Service validation context trust.Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getFile
An object that represents a Transport Layer Security (TLS) validation context trust for a local file.- See Also:
-
getSds
A reference to an object that represents a listener's Transport Layer Security (TLS) Secret Discovery Service validation context trust.- See Also:
-
builder
@Stability(Stable) static CfnVirtualNode.ListenerTlsValidationContextTrustProperty.Builder builder()
-