interface TrustStoreConfigProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.CloudFront.Mixins.CfnDistributionPropsMixin.TrustStoreConfigProperty |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awscloudfront/mixins#CfnDistributionPropsMixin_TrustStoreConfigProperty |
Java | software.amazon.awscdk.mixins.preview.services.cloudfront.mixins.CfnDistributionPropsMixin.TrustStoreConfigProperty |
Python | aws_cdk.mixins_preview.aws_cloudfront.mixins.CfnDistributionPropsMixin.TrustStoreConfigProperty |
TypeScript | @aws-cdk/mixins-preview » aws_cloudfront » mixins » CfnDistributionPropsMixin » 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 { mixins as cloudfront_mixins } from '@aws-cdk/mixins-preview/aws-cloudfront';
const trustStoreConfigProperty: cloudfront_mixins.CfnDistributionPropsMixin.TrustStoreConfigProperty = {
advertiseTrustStoreCaNames: false,
ignoreCertificateExpiry: false,
trustStoreId: 'trustStoreId',
};
Properties
| Name | Type | Description |
|---|---|---|
| advertise | boolean | IResolvable | The configuration to use to advertise trust store CA names. |
| ignore | boolean | IResolvable | The configuration to use to ignore certificate expiration. |
| trust | 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.
trustStoreId?
Type:
string
(optional)
The trust store ID.

.NET
Go
Java
Python
TypeScript