Interface CfnVirtualNode.BackendDefaultsProperty

All Superinterfaces:
software.amazon.jsii.JsiiSerializable
All Known Implementing Classes:
CfnVirtualNode.BackendDefaultsProperty.Jsii$Proxy
Enclosing class:
CfnVirtualNode

@Stability(Stable) public static interface CfnVirtualNode.BackendDefaultsProperty extends software.amazon.jsii.JsiiSerializable
An object that represents the default properties for a backend.

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.*;
 BackendDefaultsProperty backendDefaultsProperty = BackendDefaultsProperty.builder()
         .clientPolicy(ClientPolicyProperty.builder()
                 .tls(ClientPolicyTlsProperty.builder()
                         .validation(TlsValidationContextProperty.builder()
                                 .trust(TlsValidationContextTrustProperty.builder()
                                         .acm(TlsValidationContextAcmTrustProperty.builder()
                                                 .certificateAuthorityArns(List.of("certificateAuthorityArns"))
                                                 .build())
                                         .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())
                         // the properties below are optional
                         .certificate(ClientTlsCertificateProperty.builder()
                                 .file(ListenerTlsFileCertificateProperty.builder()
                                         .certificateChain("certificateChain")
                                         .privateKey("privateKey")
                                         .build())
                                 .sds(ListenerTlsSdsCertificateProperty.builder()
                                         .secretName("secretName")
                                         .build())
                                 .build())
                         .enforce(false)
                         .ports(List.of(123))
                         .build())
                 .build())
         .build();