Files
agent-claw/cdk/node_modules/@aws-cdk/cloud-assembly-schema/lib/integ-tests/commands/destroy.d.ts
2026-05-06 18:55:16 -05:00

19 lines
406 B
TypeScript

import type { DefaultCdkOptions } from './common';
/**
* Options to use with cdk destroy
*/
export interface DestroyOptions extends DefaultCdkOptions {
/**
* Do not ask for permission before destroying stacks
*
* @default false
*/
readonly force?: boolean;
/**
* Only destroy the given stack
*
* @default false
*/
readonly exclusively?: boolean;
}