interface TrustStoreConfigProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.AWS.CloudFront.CfnDistribution.TrustStoreConfigProperty |
Go | github.com/aws/aws-cdk-go/awscdk/v2/awscloudfront#CfnDistribution_TrustStoreConfigProperty |
Java | software.amazon.awscdk.services.cloudfront.CfnDistribution.TrustStoreConfigProperty |
Python | aws_cdk.aws_cloudfront.CfnDistribution.TrustStoreConfigProperty |
TypeScript | aws-cdk-lib » aws_cloudfront » CfnDistribution » TrustStoreConfigProperty |
A trust store configuration.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { aws_cloudfront as cloudfront } from 'aws-cdk-lib';
const trustStoreConfigProperty: cloudfront.CfnDistribution.TrustStoreConfigProperty = {
trustStoreId: 'trustStoreId',
// the properties below are optional
advertiseTrustStoreCaNames: false,
ignoreCertificateExpiry: false,
};
Properties
| Name | Type | Description |
|---|---|---|
| trust | string | The trust store ID. |
| advertise | boolean | IResolvable | The configuration to use to advertise trust store CA names. |
| ignore | boolean | IResolvable | The configuration to use to ignore certificate expiration. |
trustStoreId
Type:
string
The trust store ID.
advertiseTrustStoreCaNames?
Type:
boolean | IResolvable
(optional)
The configuration to use to advertise trust store CA names.
ignoreCertificateExpiry?
Type:
boolean | IResolvable
(optional)
The configuration to use to ignore certificate expiration.

.NET
Go
Java
Python
TypeScript