Interface CfnDistribution.IViewerMtlsConfigProperty
A viewer mTLS configuration.
Namespace: Amazon.CDK.AWS.CloudFront
Assembly: Amazon.CDK.Lib.dll
Syntax (csharp)
public interface CfnDistribution.IViewerMtlsConfigProperty
Syntax (vb)
Public Interface CfnDistribution.IViewerMtlsConfigProperty
Remarks
ExampleMetadata: fixture=_generated
Examples
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
using Amazon.CDK.AWS.CloudFront;
var viewerMtlsConfigProperty = new ViewerMtlsConfigProperty {
Mode = "mode",
TrustStoreConfig = new TrustStoreConfigProperty {
TrustStoreId = "trustStoreId",
// the properties below are optional
AdvertiseTrustStoreCaNames = false,
IgnoreCertificateExpiry = false
}
};
Synopsis
Properties
| Mode | The viewer mTLS mode. |
| TrustStoreConfig | The trust store configuration associated with the viewer mTLS configuration. |
Properties
Mode
The viewer mTLS mode.
string? Mode { get; }
Property Value
Remarks
TrustStoreConfig
The trust store configuration associated with the viewer mTLS configuration.
object? TrustStoreConfig { get; }