Retrieves the default config for creating clients :rtype: botocore.client.Config :returns: The default client config object when creating clients. If the value is ``None`` then there is no default config object attached to the session.
(self)
| 417 | return self._config |
| 418 | |
| 419 | def get_default_client_config(self): |
| 420 | """Retrieves the default config for creating clients |
| 421 | |
| 422 | :rtype: botocore.client.Config |
| 423 | :returns: The default client config object when creating clients. If |
| 424 | the value is ``None`` then there is no default config object |
| 425 | attached to the session. |
| 426 | """ |
| 427 | return self._client_config |
| 428 | |
| 429 | def set_default_client_config(self, client_config): |
| 430 | """Sets the default config for creating clients |
no outgoing calls