From ff563188b099d0f45fa2f640687b3d27114fb6a9 Mon Sep 17 00:00:00 2001 From: davidlm Date: Tue, 24 Oct 2023 13:47:24 -0400 Subject: [PATCH] clean up doc string and add changelog --- .../next-release/enhancement-Configuration-49047.json | 5 +++++ botocore/config.py | 8 ++++---- 2 files changed, 9 insertions(+), 4 deletions(-) create mode 100644 .changes/next-release/enhancement-Configuration-49047.json diff --git a/.changes/next-release/enhancement-Configuration-49047.json b/.changes/next-release/enhancement-Configuration-49047.json new file mode 100644 index 0000000000..d640feb6e7 --- /dev/null +++ b/.changes/next-release/enhancement-Configuration-49047.json @@ -0,0 +1,5 @@ +{ + "type": "enhancement", + "category": "Configuration", + "description": "Adds client context params support to ``Config``." +} diff --git a/botocore/config.py b/botocore/config.py index 0c774e6fc9..e8c654c01d 100644 --- a/botocore/config.py +++ b/botocore/config.py @@ -223,10 +223,10 @@ class Config: :type client_context_params: dict :param client_context_params: A dictionary of parameters specific to - individual services. If available, valid parameters can be found in the - ``Client Context Parameters`` section of the service's client homepage. - Invalid parameters or ones that are not used by the specified service - will be ignored. + individual services. If available, valid parameters can be found in + the ``Client Context Parameters`` section of the service's client's + documentation. Invalid parameters or ones that are not used by the + specified service will be ignored. Defaults to None. """