interface PublicKeyReference
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Interfaces.CloudFront.PublicKeyReference |
Go | github.com/aws/aws-cdk-go/awscdk/v2/interfaces/awscloudfront#PublicKeyReference |
Java | software.amazon.awscdk.interfaces.cloudfront.PublicKeyReference |
Python | aws_cdk.interfaces.aws_cloudfront.PublicKeyReference |
TypeScript | aws-cdk-lib » interfaces » 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 interfaces_aws_cloudfront } from 'aws-cdk-lib/interfaces';
const publicKeyReference: interfaces_aws_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