Interface CfnVirtualGateway.VirtualGatewayTlsValidationContextProperty
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnVirtualGateway.VirtualGatewayTlsValidationContextProperty.Jsii$Proxy
- Enclosing class:
- CfnVirtualGateway
@Stability(Stable)
public static interface CfnVirtualGateway.VirtualGatewayTlsValidationContextProperty
extends software.amazon.jsii.JsiiSerializable
An object that represents a 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.*; VirtualGatewayTlsValidationContextProperty virtualGatewayTlsValidationContextProperty = VirtualGatewayTlsValidationContextProperty.builder() .trust(VirtualGatewayTlsValidationContextTrustProperty.builder() .acm(VirtualGatewayTlsValidationContextAcmTrustProperty.builder() .certificateAuthorityArns(List.of("certificateAuthorityArns")) .build()) .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();
-
Nested Class Summary
Modifier and TypeInterfaceDescriptionstatic final class
static final class
An implementation forCfnVirtualGateway.VirtualGatewayTlsValidationContextProperty
-
Method Summary
Modifier and TypeMethodDescriptionbuilder()
default Object
A reference to an object that represents the SANs for a virtual gateway's 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 virtual gateway's listener's Transport Layer Security (TLS) validation context. -
builder
@Stability(Stable) static CfnVirtualGateway.VirtualGatewayTlsValidationContextProperty.Builder builder()
-