-
Notifications
You must be signed in to change notification settings - Fork 4.3k
New CLI examples for API Gateway #9544
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
base: develop
Are you sure you want to change the base?
New CLI examples for API Gateway #9544
Conversation
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Thank you for your submission. Please review the suggestions, commit your changes, and push them to your PR.
aws apigatewayv2 create-routing-rule \ | ||
--domain-name 'regional.example.com' \ | ||
--priority 50 \ | ||
--conditions '[ |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Lines 8-24 need to be condensed to a single line or escaped.
@@ -0,0 +1,52 @@ | |||
**To create a routing rule** | |||
|
|||
The following ``create-routing-rule`` example creates a routing rule with a priority of 50. :: |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
The following ``create-routing-rule`` example creates a routing rule with a priority of 50. :: | |
The following ``create-routing-rule`` example creates a routing rule with a priority of ``50``. :: |
aws apigatewayv2 put-routing-rule \ | ||
--domain-name 'regional.example.com' \ | ||
--priority 150 \ | ||
--conditions '[ |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Same here, lines 8-24 need to be condensed to a single lined or every line needs to be escaped.
Hi Elysa, I address your feedback and made a new commit to avoid confusion. Thanks. |
By submitting this pull request, I confirm that you can use, modify, copy, and redistribute this contribution, under the terms of your choice.