Interface CfnDistributionPropsMixin.ViewerMtlsConfigProperty
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnDistributionPropsMixin.ViewerMtlsConfigProperty.Jsii$Proxy
- Enclosing class:
CfnDistributionPropsMixin
@Stability(Stable)
public static interface CfnDistributionPropsMixin.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.cfnpropertymixins.services.cloudfront.*;
ViewerMtlsConfigProperty viewerMtlsConfigProperty = ViewerMtlsConfigProperty.builder()
.mode("mode")
.trustStoreConfig(TrustStoreConfigProperty.builder()
.advertiseTrustStoreCaNames(false)
.ignoreCertificateExpiry(false)
.trustStoreId("trustStoreId")
.build())
.build();
- See Also:
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classA builder forCfnDistributionPropsMixin.ViewerMtlsConfigPropertystatic final classAn implementation forCfnDistributionPropsMixin.ViewerMtlsConfigProperty -
Method Summary
Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getMode
The viewer mTLS mode.- See Also:
-
getTrustStoreConfig
The trust store configuration associated with the viewer mTLS configuration.Returns union: either
IResolvableorCfnDistributionPropsMixin.TrustStoreConfigProperty- See Also:
-
builder
-