Show / Hide Table of Contents

Interface ICfnTrustStoreProps

Properties for defining a CfnTrustStore.

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

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cloudfront-truststore.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 cfnTrustStoreProps = new CfnTrustStoreProps {
                 Name = "name",

                 // the properties below are optional
                 CaCertificatesBundleSource = new CaCertificatesBundleSourceProperty {
                     CaCertificatesBundleS3Location = new CaCertificatesBundleS3LocationProperty {
                         Bucket = "bucket",
                         Key = "key",
                         Region = "region",

                         // the properties below are optional
                         Version = "version"
                     }
                 },
                 Tags = new [] { new CfnTag {
                     Key = "key",
                     Value = "value"
                 } },
                 UseClientCertificateOcspEndpoint = false
             };

Synopsis

Properties

CaCertificatesBundleSource

A CA certificates bundle source.

Name

The trust store's name.

Tags

A complex type that contains zero or more Tag elements.

UseClientCertificateOcspEndpoint

A boolean.

Properties

CaCertificatesBundleSource

A CA certificates bundle source.

object? CaCertificatesBundleSource { get; }
Property Value

object

Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cloudfront-truststore.html#cfn-cloudfront-truststore-cacertificatesbundlesource

Type union: either IResolvable or CfnTrustStore.ICaCertificatesBundleSourceProperty

Name

The trust store's name.

string Name { get; }
Property Value

string

Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cloudfront-truststore.html#cfn-cloudfront-truststore-name

Tags

A complex type that contains zero or more Tag elements.

ICfnTag[]? Tags { get; }
Property Value

ICfnTag[]

Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cloudfront-truststore.html#cfn-cloudfront-truststore-tags

UseClientCertificateOcspEndpoint

A boolean.

object? UseClientCertificateOcspEndpoint { get; }
Property Value

object

Remarks

When true, performs real-time certificate revocation checks by querying the OCSP endpoint specified within the client certificate.

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cloudfront-truststore.html#cfn-cloudfront-truststore-useclientcertificateocspendpoint

Type union: either bool or IResolvable

Back to top Generated by DocFX