Interface CfnDistribution.ViewerMtlsConfigProperty

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

@Stability(Stable) public static interface CfnDistribution.ViewerMtlsConfigProperty extends software.amazon.jsii.JsiiSerializable
A viewer mTLS configuration.

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.cloudfront.*;
 ViewerMtlsConfigProperty viewerMtlsConfigProperty = ViewerMtlsConfigProperty.builder()
         .mode("mode")
         .trustStoreConfig(TrustStoreConfigProperty.builder()
                 .trustStoreId("trustStoreId")
                 // the properties below are optional
                 .advertiseTrustStoreCaNames(false)
                 .ignoreCertificateExpiry(false)
                 .build())
         .build();
 

See Also: