interface CaCertificatesBundleSourceProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.AWS.CloudFront.CfnTrustStore.CaCertificatesBundleSourceProperty |
Go | github.com/aws/aws-cdk-go/awscdk/v2/awscloudfront#CfnTrustStore_CaCertificatesBundleSourceProperty |
Java | software.amazon.awscdk.services.cloudfront.CfnTrustStore.CaCertificatesBundleSourceProperty |
Python | aws_cdk.aws_cloudfront.CfnTrustStore.CaCertificatesBundleSourceProperty |
TypeScript | aws-cdk-lib » aws_cloudfront » CfnTrustStore » CaCertificatesBundleSourceProperty |
A CA certificates bundle source.
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 caCertificatesBundleSourceProperty: cloudfront.CfnTrustStore.CaCertificatesBundleSourceProperty = {
caCertificatesBundleS3Location: {
bucket: 'bucket',
key: 'key',
region: 'region',
// the properties below are optional
version: 'version',
},
};
Properties
| Name | Type | Description |
|---|---|---|
| ca | IResolvable | Ca | The CA certificates bundle location in Amazon S3. |
caCertificatesBundleS3Location
Type:
IResolvable | Ca
The CA certificates bundle location in Amazon S3.

.NET
Go
Java
Python
TypeScript