aws-cdk-cloudfront-key-pair
Version:
AWS CDK L3 construct for managing CloudFront trusted key group key pairs
12 lines (11 loc) • 515 B
TypeScript
import { Construct } from 'constructs';
import * as cloudfront from 'aws-cdk-lib/aws-cloudfront';
import { CloudFrontKeyPairProps } from './cloudfront-key-pair-props';
import { KeyPair } from './key-pair';
export declare class CloudFrontKeyPair extends Construct {
/** @readonly Generated CloudFront public key */
readonly publicKey: cloudfront.PublicKey;
/** @readonly Generated key pair */
readonly keyPair: KeyPair;
constructor(scope: Construct, id: string, props: CloudFrontKeyPairProps);
}