interface CaCertificatesBundleS3LocationProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.CloudFront.Mixins.CfnTrustStorePropsMixin.CaCertificatesBundleS3LocationProperty |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awscloudfront/mixins#CfnTrustStorePropsMixin_CaCertificatesBundleS3LocationProperty |
Java | software.amazon.awscdk.mixins.preview.services.cloudfront.mixins.CfnTrustStorePropsMixin.CaCertificatesBundleS3LocationProperty |
Python | aws_cdk.mixins_preview.aws_cloudfront.mixins.CfnTrustStorePropsMixin.CaCertificatesBundleS3LocationProperty |
TypeScript | @aws-cdk/mixins-preview » aws_cloudfront » mixins » CfnTrustStorePropsMixin » 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 { mixins as cloudfront_mixins } from '@aws-cdk/mixins-preview/aws-cloudfront';
const caCertificatesBundleS3LocationProperty: cloudfront_mixins.CfnTrustStorePropsMixin.CaCertificatesBundleS3LocationProperty = {
bucket: 'bucket',
key: 'key',
region: 'region',
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
(optional)
The S3 bucket.
key?
Type:
string
(optional)
The location's key.
region?
Type:
string
(optional)
The location's Region.
version?
Type:
string
(optional)
The location's version.

.NET
Go
Java
Python
TypeScript