interface TrustStoreReference
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Interfaces.CloudFront.TrustStoreReference |
Go | github.com/aws/aws-cdk-go/awscdk/v2/interfaces/awscloudfront#TrustStoreReference |
Java | software.amazon.awscdk.interfaces.cloudfront.TrustStoreReference |
Python | aws_cdk.interfaces.aws_cloudfront.TrustStoreReference |
TypeScript | aws-cdk-lib » interfaces » aws_cloudfront » TrustStoreReference |
A reference to a TrustStore resource.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { aws_cloudfront as interfaces_cloudfront } from 'aws-cdk-lib/interfaces';
const trustStoreReference: interfaces_cloudfront.TrustStoreReference = {
trustStoreArn: 'trustStoreArn',
trustStoreId: 'trustStoreId',
};
Properties
| Name | Type | Description |
|---|---|---|
| trust | string | The ARN of the TrustStore resource. |
| trust | string | The Id of the TrustStore resource. |
trustStoreArn
Type:
string
The ARN of the TrustStore resource.
trustStoreId
Type:
string
The Id of the TrustStore resource.

.NET
Go
Java
Python
TypeScript