agent-claw: automated task changes

This commit is contained in:
daniel
2026-05-06 18:55:16 -05:00
parent 38905bb1e9
commit 732b00fb66
8494 changed files with 2018127 additions and 4 deletions

View File

@@ -0,0 +1,23 @@
/**
* The deletion protection check options.
*/
export declare enum DeletionProtectionCheck {
/**
* The default setting,
* which uses account-level deletion protection. To configure account-level deletion protection, use the UpdateAccountSettings API.
*/
ACCOUNT_DEFAULT = "ACCOUNT_DEFAULT",
/**
* Instructs the deletion protection check to run,
* even if deletion protection is disabled at the account level.
*
* APPLY also forces the deletion protection check to run against resources created in the past hour,
* which are normally excluded from deletion protection checks.
*/
APPLY = "APPLY",
/**
* Instructs AWS AppConfig to bypass the deletion protection check and delete an environment or a configuration profile
* even if deletion protection would have otherwise prevented it.
*/
BYPASS = "BYPASS"
}