Show / Hide Table of Contents

Interface CfnDistribution.ITrustStoreConfigProperty

A trust store configuration.

Namespace: Amazon.CDK.AWS.CloudFront
Assembly: Amazon.CDK.Lib.dll
Syntax (csharp)
public interface CfnDistribution.ITrustStoreConfigProperty
Syntax (vb)
Public Interface CfnDistribution.ITrustStoreConfigProperty
Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cloudfront-distribution-truststoreconfig.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 trustStoreConfigProperty = new TrustStoreConfigProperty {
                 TrustStoreId = "trustStoreId",

                 // the properties below are optional
                 AdvertiseTrustStoreCaNames = false,
                 IgnoreCertificateExpiry = false
             };

Synopsis

Properties

AdvertiseTrustStoreCaNames

The configuration to use to advertise trust store CA names.

IgnoreCertificateExpiry

The configuration to use to ignore certificate expiration.

TrustStoreId

The trust store ID.

Properties

AdvertiseTrustStoreCaNames

The configuration to use to advertise trust store CA names.

object? AdvertiseTrustStoreCaNames { get; }
Property Value

object

Remarks

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

Type union: either bool or IResolvable

IgnoreCertificateExpiry

The configuration to use to ignore certificate expiration.

object? IgnoreCertificateExpiry { get; }
Property Value

object

Remarks

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

Type union: either bool or IResolvable

TrustStoreId

The trust store ID.

string TrustStoreId { get; }
Property Value

string

Remarks

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

Back to top Generated by DocFX