AWS transform documentation change
Summary
Added documentation for setting Agent Minutes budget limit with --limit option and resuming conversations with increased limits
Security assessment
This change adds cost control features (budget limits for Agent Minutes) which is a resource management feature, not a security feature. No evidence of addressing security vulnerabilities.
Diff
diff --git a/transform/latest/userguide/custom-workflows.md b/transform/latest/userguide/custom-workflows.md index b65a58c74..9547e0429 100644 --- a//transform/latest/userguide/custom-workflows.md +++ b//transform/latest/userguide/custom-workflows.md @@ -150 +150 @@ Agent minutes persist across interruptions. If you interrupt a session with Ctrl -**To check agent minutes during an interactive session:** +**To check Agent Minutes during an interactive session:** @@ -152 +152,16 @@ Agent minutes persist across interruptions. If you interrupt a session with Ctrl -Type `/usage` at the input prompt to display the current accumulated agent minutes without ending the conversation. +Type `/usage` at the input prompt to display the current accumulated Agent Minutes without ending the conversation. + +**To set an Agent Minutes budget limit:** + + + atx custom def exec -n my-transformation -p ./my-project --limit 30 + +The `--limit` option sets a maximum [Agent Minutes](https://aws.amazon.com/transform/pricing/) budget for the session. Agent Minutes reflect active agent work time, not wall clock time. When the limit is reached, the CLI displays a message and exits with instructions to resume: + + + ⚠️ Budget limit reached: 30.00 / 30.00 Agent Minutes. Exiting. + +You can resume the conversation later with an increased limit: + + + atx --conversation-id <conversation_id> -t --limit <increased_limit>