UNPKG

aws-cdk-cloudfront-key-pair

Version:

AWS CDK L3 construct for managing CloudFront trusted key group key pairs

13 lines (12 loc) 504 B
import { Construct } from 'constructs'; import { KeyPairProps } from './key-pair-props'; export declare class KeyPair extends Construct { /** @readonly Content of the generated public key */ readonly publicKey: string; /** @readonly ARN of the public key secret */ readonly publicKeyArn: string; /** @readonly ARN of the private key secret */ readonly privateKeyArn: string; constructor(scope: Construct, id: string, props: KeyPairProps); private createKeyPairFunction; }