Skip to content

Update my_secrets_example.py with note about character limit #432

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Open
wants to merge 4 commits into
base: main
Choose a base branch
from
Open
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 3 additions & 1 deletion src/ac_training_lab/picam/my_secrets_example.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,8 @@
LAMBDA_FUNCTION_URL = "your_Lambda_function_url"
CAM_NAME = "your_camera_name"
WORKFLOW_NAME = "your_workflow_name"

WORKFLOW_NAME = "your_workflow_name" # must be 59 characters or fewer
Copy link
Preview

Copilot AI Aug 6, 2025

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

The comment should specify why there is a 59-character limit (e.g., API constraint, database field limit) to provide better context for developers.

Suggested change
WORKFLOW_NAME = "your_workflow_name" # must be 59 characters or fewer
WORKFLOW_NAME = "your_workflow_name" # must be 59 characters or fewer (AWS Step Functions API constraint)

Copilot uses AI. Check for mistakes.


PRIVACY_STATUS = "private" # "private", "public", or "unlisted"

# Camera orientation settings
Expand Down
Loading