agent-claw: automated task changes
This commit is contained in:
21
cdk/node_modules/aws-cdk/lib/commands/list-stacks.d.ts
generated
vendored
Normal file
21
cdk/node_modules/aws-cdk/lib/commands/list-stacks.d.ts
generated
vendored
Normal file
@@ -0,0 +1,21 @@
|
||||
import type { StackDetails } from '@aws-cdk/toolkit-lib';
|
||||
import type { CdkToolkit } from '../cli/cdk-toolkit';
|
||||
/**
|
||||
* Options for List Stacks
|
||||
*/
|
||||
export interface ListStacksOptions {
|
||||
/**
|
||||
* Stacks to list
|
||||
*
|
||||
* @default - All stacks are listed
|
||||
*/
|
||||
readonly selectors: string[];
|
||||
}
|
||||
/**
|
||||
* List Stacks
|
||||
*
|
||||
* @param toolkit - cdk toolkit
|
||||
* @param options - list stacks options
|
||||
* @returns StackDetails[]
|
||||
*/
|
||||
export declare function listStacks(toolkit: CdkToolkit, options: ListStacksOptions): Promise<StackDetails[]>;
|
||||
Reference in New Issue
Block a user