UNPKG

cdk-encrypted-secret

Version:

CDK Construct that creates an AWS Secret Manager Secret and sets the value from an encrypted Ciphertext.

18 lines (17 loc) 450 B
import { SecretsManagerExtensionConfiguration } from "./extensionConfiguration"; /** * @public */ export interface RuntimeExtension { configure(extensionConfiguration: SecretsManagerExtensionConfiguration): void; } /** * @public */ export interface RuntimeExtensionsConfig { extensions: RuntimeExtension[]; } /** * @internal */ export declare const resolveRuntimeExtensions: (runtimeConfig: any, extensions: RuntimeExtension[]) => any;