interface PublicKeyReference
| Language | Type name |
|---|---|
.NET | Amazon.CDK.AWS.CloudFront.PublicKeyReference |
Go | github.com/aws/aws-cdk-go/awscdk/v2/awscloudfront#PublicKeyReference |
Java | software.amazon.awscdk.services.cloudfront.PublicKeyReference |
Python | aws_cdk.aws_cloudfront.PublicKeyReference |
TypeScript | aws-cdk-lib » aws_cloudfront » PublicKeyReference |
A reference to a PublicKey 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 cloudfront } from 'aws-cdk-lib';
const publicKeyReference: cloudfront.PublicKeyReference = {
publicKeyId: 'publicKeyId',
};
Properties
| Name | Type | Description |
|---|---|---|
| public | string | The Id of the PublicKey resource. |
publicKeyId
Type:
string
The Id of the PublicKey resource.

.NET
Go
Java
Python
TypeScript