Encapsulation of objects tracked within the ``_context`` context variable. ``features`` is a set responsible for storing features used during preparation of an AWS request. ``botocore.useragent.register_feature_id`` is used to add to this set.
| 25 | |
| 26 | @dataclass |
| 27 | class ClientContext: |
| 28 | """ |
| 29 | Encapsulation of objects tracked within the ``_context`` context variable. |
| 30 | |
| 31 | ``features`` is a set responsible for storing features used during |
| 32 | preparation of an AWS request. ``botocore.useragent.register_feature_id`` |
| 33 | is used to add to this set. |
| 34 | """ |
| 35 | |
| 36 | features: Set[str] = field(default_factory=set) |
| 37 | |
| 38 | |
| 39 | _context = ContextVar("_context") |
no outgoing calls