UNPKG

cdk-encrypted-secret

Version:

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

9 lines (8 loc) 316 B
import { ProviderError } from "./ProviderError"; export class CredentialsProviderError extends ProviderError { constructor(message, options = true) { super(message, options); this.name = "CredentialsProviderError"; Object.setPrototypeOf(this, CredentialsProviderError.prototype); } }