UNPKG

cdk-encrypted-secret

Version:

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

10 lines (9 loc) 417 B
import { CredentialsProviderError } from "@smithy/property-provider"; export class InstanceMetadataV1FallbackError extends CredentialsProviderError { constructor(message, tryNextLink = true) { super(message, tryNextLink); this.tryNextLink = tryNextLink; this.name = "InstanceMetadataV1FallbackError"; Object.setPrototypeOf(this, InstanceMetadataV1FallbackError.prototype); } }