Show / Hide Table of Contents

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

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cloudfront-distribution-viewermtlsconfig.html

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

string

Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cloudfront-distribution-viewermtlsconfig.html#cfn-cloudfront-distribution-viewermtlsconfig-mode

TrustStoreConfig

The trust store configuration associated with the viewer mTLS configuration.

object? TrustStoreConfig { get; }
Property Value

object

Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cloudfront-distribution-viewermtlsconfig.html#cfn-cloudfront-distribution-viewermtlsconfig-truststoreconfig

Type union: either IResolvable or CfnDistribution.ITrustStoreConfigProperty

Back to top Generated by DocFX