Skip to content

Commit

Permalink
chore(toolkit): add to watch options (#32950)
Browse files Browse the repository at this point in the history
Options for `watch` in the programmatic toolkit

----

*By submitting this pull request, I confirm that my contribution is made
under the terms of the Apache-2.0 license*
  • Loading branch information
kaizencc authored Jan 15, 2025
1 parent 2d7d05c commit 713b6d5
Showing 1 changed file with 21 additions and 0 deletions.
21 changes: 21 additions & 0 deletions packages/@aws-cdk/toolkit/lib/actions/watch.ts
Original file line number Diff line number Diff line change
Expand Up @@ -8,4 +8,25 @@ export interface WatchOptions extends BaseDeployOptions {
* @default - false
*/
readonly traceLogs?: boolean;

/**
* The extra string to append to the User-Agent header when performing AWS SDK calls.
*
* @default - nothing extra is appended to the User-Agent header
*/
readonly extraUserAgent?: string;

/**
* Watch the files in this list
*
* @default - []
*/
readonly include?: string[];

/**
* Ignore watching the files in this list
*
* @default - []
*/
readonly exclude?: string[];
}

0 comments on commit 713b6d5

Please sign in to comment.