interface TrustStoreConfigProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.CfnPropertyMixins.AWS.CloudFront.CfnDistributionPropsMixin.TrustStoreConfigProperty |
Go | github.com/aws/aws-cdk-go/awscdkcfnpropertymixins/v2/awscloudfront#CfnDistributionPropsMixin_TrustStoreConfigProperty |
Java | software.amazon.awscdk.cfnpropertymixins.services.cloudfront.CfnDistributionPropsMixin.TrustStoreConfigProperty |
Python | aws_cdk.cfn_property_mixins.aws_cloudfront.CfnDistributionPropsMixin.TrustStoreConfigProperty |
TypeScript | @aws-cdk/cfn-property-mixins » aws_cloudfront » 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 { aws_cloudfront as cloudfront } from '@aws-cdk/cfn-property-mixins';
const trustStoreConfigProperty: cloudfront.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