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