interface CaCertificatesBundleS3LocationProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.AWS.CloudFront.CfnTrustStore.CaCertificatesBundleS3LocationProperty |
Go | github.com/aws/aws-cdk-go/awscdk/v2/awscloudfront#CfnTrustStore_CaCertificatesBundleS3LocationProperty |
Java | software.amazon.awscdk.services.cloudfront.CfnTrustStore.CaCertificatesBundleS3LocationProperty |
Python | aws_cdk.aws_cloudfront.CfnTrustStore.CaCertificatesBundleS3LocationProperty |
TypeScript | aws-cdk-lib » aws_cloudfront » CfnTrustStore » CaCertificatesBundleS3LocationProperty |
The CA certificates bundle location in Amazon S3.
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 caCertificatesBundleS3LocationProperty: cloudfront.CfnTrustStore.CaCertificatesBundleS3LocationProperty = {
bucket: 'bucket',
key: 'key',
region: 'region',
// the properties below are optional
version: 'version',
};
Properties
| Name | Type | Description |
|---|---|---|
| bucket | string | The S3 bucket. |
| key | string | The location's key. |
| region | string | The location's Region. |
| version? | string | The location's version. |
bucket
Type:
string
The S3 bucket.
key
Type:
string
The location's key.
region
Type:
string
The location's Region.
version?
Type:
string
(optional)
The location's version.

.NET
Go
Java
Python
TypeScript