MCPcopy Index your code
hub / github.com/aws/aws-cli / get_default_client_config

Method get_default_client_config

awscli/botocore/session.py:419–427  ·  view source on GitHub ↗

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)

Source from the content-addressed store, hash-verified

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

Calls

no outgoing calls