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

Method with_client_config

awscli/botocore/useragent.py:380–389  ·  view source on GitHub ↗

Create a copy with all original values and client-specific values. :type client_config: botocore.config.Config :param client_config: The client configuration object.

(self, client_config)

Source from the content-addressed store, hash-verified

378 self._client_features = features
379
380 def with_client_config(self, client_config):
381 """
382 Create a copy with all original values and client-specific values.
383
384 :type client_config: botocore.config.Config
385 :param client_config: The client configuration object.
386 """
387 cp = copy(self)
388 cp._client_config = client_config
389 return cp
390
391 def to_string(self):
392 """

Callers 7

test_shared_test_caseFunction · 0.80
__init__Method · 0.80
get_client_argsMethod · 0.80
compute_client_argsMethod · 0.80

Calls

no outgoing calls