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) 194 B
import { AbortSignal } from "./AbortSignal"; export class AbortController { constructor() { this.signal = new AbortSignal(); } abort() { this.signal.abort(); } }