Standardize SQL query placeholder formatting to snake_case#32
Merged
jeffreyaven merged 1 commit intomainfrom Feb 23, 2026
Merged
Standardize SQL query placeholder formatting to snake_case#32jeffreyaven merged 1 commit intomainfrom
jeffreyaven merged 1 commit intomainfrom
Conversation
…on for global services
- Replace angle bracket template syntax (<Anything>) with double brace syntax ({{ anything }}) in all SQL examples and manifest templates
- Convert all property value references to snake_case (e.g., {{ role_name }} instead of {{ RoleName }}) while keeping SQL column names in their original PascalCase form
- Remove global services special case so all services (including iam, route53, cloudfront, etc.) use region = 'us-east-1' in examples
- Add yaml.dump options (lineWidth: -1) and trimEnd() for cleaner manifest YAML output
- Snake_case manifest prop names and nested object keys in stackql-deploy templates
https://claude.ai/code/session_01QMBgxzvTuHbfB3F8v52Cts
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Description
This PR standardizes the placeholder formatting in SQL query examples across all AWS service documentation files. The changes convert placeholder names from PascalCase (e.g.,
{{ JobDefinitionName }}) and mixed case formats to consistent snake_case (e.g.,{{ job_definition_name }}).Additionally, the code generator (
bin/generate-docs.js) has been updated to produce snake_case placeholders going forward, ensuring consistency in all future documentation generation.Changes Made
Services Affected
This change impacts documentation for services including (but not limited to):
Checklist
Additional Notes
This is a documentation-only change that improves consistency and readability of SQL query examples. The snake_case format is more aligned with SQL naming conventions and makes the placeholders more intuitive for users. No functional changes to the codebase itself.
https://claude.ai/code/session_01QMBgxzvTuHbfB3F8v52Cts