interface CfnTrustStoreProps
| Language | Type name |
|---|---|
.NET | Amazon.CDK.AWS.CloudFront.CfnTrustStoreProps |
Go | github.com/aws/aws-cdk-go/awscdk/v2/awscloudfront#CfnTrustStoreProps |
Java | software.amazon.awscdk.services.cloudfront.CfnTrustStoreProps |
Python | aws_cdk.aws_cloudfront.CfnTrustStoreProps |
TypeScript | aws-cdk-lib » aws_cloudfront » CfnTrustStoreProps |
Properties for defining a CfnTrustStore.
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 cfnTrustStoreProps: cloudfront.CfnTrustStoreProps = {
name: 'name',
// the properties below are optional
caCertificatesBundleSource: {
caCertificatesBundleS3Location: {
bucket: 'bucket',
key: 'key',
region: 'region',
// the properties below are optional
version: 'version',
},
},
tags: [{
key: 'key',
value: 'value',
}],
};
Properties
| Name | Type | Description |
|---|---|---|
| name | string | The trust store's name. |
| ca | IResolvable | Ca | A CA certificates bundle source. |
| tags? | Cfn[] | A complex type that contains zero or more Tag elements. |
name
Type:
string
The trust store's name.
caCertificatesBundleSource?
Type:
IResolvable | Ca
(optional)
A CA certificates bundle source.
tags?
Type:
Cfn[]
(optional)
A complex type that contains zero or more Tag elements.

.NET
Go
Java
Python
TypeScript