-
Notifications
You must be signed in to change notification settings - Fork 1.9k
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
Document sigv4a signing region set #4306
Document sigv4a signing region set #4306
Conversation
docs/source/guide/configuration.rst
Outdated
@@ -232,6 +232,11 @@ You can set configuration settings using system-wide environment variables. Thes | |||
When set it will be appended to the User-Agent header of every request | |||
in the form of App/{AppId}. | |||
|
|||
``AWS_SIGV4A_SIGNING_REGION_SET`` | |||
A comma delimited list of regions to sign when singing with SigV4a. For more information, |
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.
nit: 'comma delimited' -> 'comma-delimited'
typo: 'singing' -> 'signing'
docs/source/guide/configuration.rst
Outdated
@@ -466,6 +471,10 @@ in the ``~/.aws/config`` file. | |||
functionality of ``standard`` mode with automatic client-side | |||
throttling. This is a provisional mode whose behavior might change. | |||
|
|||
``sigv4a_signing_region_set`` | |||
A comma delimited list of regions use when signing with SigV4a. If this is not set, |
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.
nit: comma-delimited
docs/source/guide/configuration.rst
Outdated
@@ -466,6 +471,10 @@ in the ``~/.aws/config`` file. | |||
functionality of ``standard`` mode with automatic client-side | |||
throttling. This is a provisional mode whose behavior might change. | |||
|
|||
``sigv4a_signing_region_set`` | |||
A comma delimited list of regions use when signing with SigV4a. If this is not set, | |||
the SDK will check if the service has modeled a default; if none is found, this will |
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.
suggestion: 'If this is not set, the SDK will use a default value modeled by the service, if any; if no default value is provided by the service, this will default to *
, which indicates the request is valid in all regions.'
Add documentation for sigv4a signing region set configuration variables