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
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 |
| UseClientCertificateOcspEndpoint | A boolean. |
Properties
CaCertificatesBundleSource
A CA certificates bundle source.
object? CaCertificatesBundleSource { get; }
Property Value
Remarks
Name
The trust store's name.
string Name { get; }
Property Value
Remarks
Tags
A complex type that contains zero or more Tag elements.
ICfnTag[]? Tags { get; }
Property Value
ICfnTag[]
Remarks
UseClientCertificateOcspEndpoint
A boolean.
object? UseClientCertificateOcspEndpoint { get; }
Property Value
Remarks
When true, performs real-time certificate revocation checks by querying the OCSP endpoint specified within the client certificate.
Type union: either bool or IResolvable