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)
| 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 | """ |
no outgoing calls