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

.NET
Go
Java
Python
TypeScript