types-aiobotocore-s3vectors 2.23.2__tar.gz

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.

Potentially problematic release.


This version of types-aiobotocore-s3vectors might be problematic. Click here for more details.

Files changed (24) hide show
  1. types_aiobotocore_s3vectors-2.23.2/LICENSE +21 -0
  2. types_aiobotocore_s3vectors-2.23.2/PKG-INFO +490 -0
  3. types_aiobotocore_s3vectors-2.23.2/README.md +443 -0
  4. types_aiobotocore_s3vectors-2.23.2/setup.cfg +4 -0
  5. types_aiobotocore_s3vectors-2.23.2/setup.py +54 -0
  6. types_aiobotocore_s3vectors-2.23.2/types_aiobotocore_s3vectors/__init__.py +44 -0
  7. types_aiobotocore_s3vectors-2.23.2/types_aiobotocore_s3vectors/__init__.pyi +43 -0
  8. types_aiobotocore_s3vectors-2.23.2/types_aiobotocore_s3vectors/__main__.py +43 -0
  9. types_aiobotocore_s3vectors-2.23.2/types_aiobotocore_s3vectors/client.py +339 -0
  10. types_aiobotocore_s3vectors-2.23.2/types_aiobotocore_s3vectors/client.pyi +336 -0
  11. types_aiobotocore_s3vectors-2.23.2/types_aiobotocore_s3vectors/literals.py +472 -0
  12. types_aiobotocore_s3vectors-2.23.2/types_aiobotocore_s3vectors/literals.pyi +470 -0
  13. types_aiobotocore_s3vectors-2.23.2/types_aiobotocore_s3vectors/paginator.py +115 -0
  14. types_aiobotocore_s3vectors-2.23.2/types_aiobotocore_s3vectors/paginator.pyi +105 -0
  15. types_aiobotocore_s3vectors-2.23.2/types_aiobotocore_s3vectors/py.typed +0 -0
  16. types_aiobotocore_s3vectors-2.23.2/types_aiobotocore_s3vectors/type_defs.py +362 -0
  17. types_aiobotocore_s3vectors-2.23.2/types_aiobotocore_s3vectors/type_defs.pyi +318 -0
  18. types_aiobotocore_s3vectors-2.23.2/types_aiobotocore_s3vectors/version.py +7 -0
  19. types_aiobotocore_s3vectors-2.23.2/types_aiobotocore_s3vectors.egg-info/PKG-INFO +490 -0
  20. types_aiobotocore_s3vectors-2.23.2/types_aiobotocore_s3vectors.egg-info/SOURCES.txt +22 -0
  21. types_aiobotocore_s3vectors-2.23.2/types_aiobotocore_s3vectors.egg-info/dependency_links.txt +1 -0
  22. types_aiobotocore_s3vectors-2.23.2/types_aiobotocore_s3vectors.egg-info/not-zip-safe +1 -0
  23. types_aiobotocore_s3vectors-2.23.2/types_aiobotocore_s3vectors.egg-info/requires.txt +3 -0
  24. types_aiobotocore_s3vectors-2.23.2/types_aiobotocore_s3vectors.egg-info/top_level.txt +1 -0
@@ -0,0 +1,21 @@
1
+ MIT License
2
+
3
+ Copyright (c) 2025 Vlad Emelianov
4
+
5
+ Permission is hereby granted, free of charge, to any person obtaining a copy
6
+ of this software and associated documentation files (the "Software"), to deal
7
+ in the Software without restriction, including without limitation the rights
8
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9
+ copies of the Software, and to permit persons to whom the Software is
10
+ furnished to do so, subject to the following conditions:
11
+
12
+ The above copyright notice and this permission notice shall be included in all
13
+ copies or substantial portions of the Software.
14
+
15
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
21
+ SOFTWARE.
@@ -0,0 +1,490 @@
1
+ Metadata-Version: 2.4
2
+ Name: types-aiobotocore-s3vectors
3
+ Version: 2.23.2
4
+ Summary: Type annotations for aiobotocore S3Vectors 2.23.2 service generated with mypy-boto3-builder 8.11.0
5
+ Home-page: https://github.com/youtype/mypy_boto3_builder
6
+ Author: Vlad Emelianov
7
+ Author-email: vlad.emelianov.nz@gmail.com
8
+ License: MIT License
9
+ Project-URL: Documentation, https://youtype.github.io/types_aiobotocore_docs/types_aiobotocore_s3vectors/
10
+ Project-URL: Source, https://github.com/youtype/mypy_boto3_builder
11
+ Project-URL: Tracker, https://github.com/youtype/mypy_boto3_builder/issues
12
+ Keywords: aiobotocore s3vectors aiobotocore-stubs type-annotations mypy typeshed autocomplete
13
+ Classifier: Development Status :: 5 - Production/Stable
14
+ Classifier: Intended Audience :: Developers
15
+ Classifier: Environment :: Console
16
+ Classifier: License :: OSI Approved :: MIT License
17
+ Classifier: Natural Language :: English
18
+ Classifier: Operating System :: OS Independent
19
+ Classifier: Programming Language :: Python :: 3
20
+ Classifier: Programming Language :: Python :: 3.8
21
+ Classifier: Programming Language :: Python :: 3.9
22
+ Classifier: Programming Language :: Python :: 3.10
23
+ Classifier: Programming Language :: Python :: 3.11
24
+ Classifier: Programming Language :: Python :: 3.12
25
+ Classifier: Programming Language :: Python :: 3.13
26
+ Classifier: Programming Language :: Python :: 3.14
27
+ Classifier: Programming Language :: Python :: 3 :: Only
28
+ Classifier: Programming Language :: Python :: Implementation :: CPython
29
+ Classifier: Typing :: Stubs Only
30
+ Requires-Python: >=3.8
31
+ Description-Content-Type: text/markdown
32
+ License-File: LICENSE
33
+ Requires-Dist: typing-extensions; python_version < "3.12"
34
+ Dynamic: author
35
+ Dynamic: author-email
36
+ Dynamic: classifier
37
+ Dynamic: description
38
+ Dynamic: description-content-type
39
+ Dynamic: home-page
40
+ Dynamic: keywords
41
+ Dynamic: license
42
+ Dynamic: license-file
43
+ Dynamic: project-url
44
+ Dynamic: requires-dist
45
+ Dynamic: requires-python
46
+ Dynamic: summary
47
+
48
+ <a id="types-aiobotocore-s3vectors"></a>
49
+
50
+ # types-aiobotocore-s3vectors
51
+
52
+ [![PyPI - types-aiobotocore-s3vectors](https://img.shields.io/pypi/v/types-aiobotocore-s3vectors.svg?color=blue)](https://pypi.org/project/types-aiobotocore-s3vectors/)
53
+ [![PyPI - Python Version](https://img.shields.io/pypi/pyversions/types-aiobotocore-s3vectors.svg?color=blue)](https://pypi.org/project/types-aiobotocore-s3vectors/)
54
+ [![Docs](https://img.shields.io/readthedocs/boto3-stubs.svg?color=blue)](https://youtype.github.io/types_aiobotocore_docs/)
55
+ [![PyPI - Downloads](https://static.pepy.tech/badge/types-aiobotocore-s3vectors)](https://pypistats.org/packages/types-aiobotocore-s3vectors)
56
+
57
+ ![boto3.typed](https://github.com/youtype/mypy_boto3_builder/raw/main/logo.png)
58
+
59
+ Type annotations for
60
+ [aiobotocore S3Vectors 2.23.2](https://pypi.org/project/aiobotocore/)
61
+ compatible with [VSCode](https://code.visualstudio.com/),
62
+ [PyCharm](https://www.jetbrains.com/pycharm/),
63
+ [Emacs](https://www.gnu.org/software/emacs/),
64
+ [Sublime Text](https://www.sublimetext.com/),
65
+ [mypy](https://github.com/python/mypy),
66
+ [pyright](https://github.com/microsoft/pyright) and other tools.
67
+
68
+ Generated with
69
+ [mypy-boto3-builder 8.11.0](https://github.com/youtype/mypy_boto3_builder).
70
+
71
+ More information can be found on
72
+ [types-aiobotocore](https://pypi.org/project/types-aiobotocore/) page and in
73
+ [types-aiobotocore-s3vectors docs](https://youtype.github.io/types_aiobotocore_docs/types_aiobotocore_s3vectors/).
74
+
75
+ See how it helps you find and fix potential bugs:
76
+
77
+ ![types-boto3 demo](https://github.com/youtype/mypy_boto3_builder/raw/main/demo.gif)
78
+
79
+ - [types-aiobotocore-s3vectors](#types-aiobotocore-s3vectors)
80
+ - [How to install](#how-to-install)
81
+ - [Generate locally (recommended)](<#generate-locally-(recommended)>)
82
+ - [From PyPI with pip](#from-pypi-with-pip)
83
+ - [How to uninstall](#how-to-uninstall)
84
+ - [Usage](#usage)
85
+ - [VSCode](#vscode)
86
+ - [PyCharm](#pycharm)
87
+ - [Emacs](#emacs)
88
+ - [Sublime Text](#sublime-text)
89
+ - [Other IDEs](#other-ides)
90
+ - [mypy](#mypy)
91
+ - [pyright](#pyright)
92
+ - [Pylint compatibility](#pylint-compatibility)
93
+ - [Explicit type annotations](#explicit-type-annotations)
94
+ - [Client annotations](#client-annotations)
95
+ - [Paginators annotations](#paginators-annotations)
96
+ - [Literals](#literals)
97
+ - [Type definitions](#type-definitions)
98
+ - [How it works](#how-it-works)
99
+ - [What's new](#what's-new)
100
+ - [Implemented features](#implemented-features)
101
+ - [Latest changes](#latest-changes)
102
+ - [Versioning](#versioning)
103
+ - [Thank you](#thank-you)
104
+ - [Documentation](#documentation)
105
+ - [Support and contributing](#support-and-contributing)
106
+
107
+ <a id="how-to-install"></a>
108
+
109
+ ## How to install
110
+
111
+ <a id="generate-locally-(recommended)"></a>
112
+
113
+ ### Generate locally (recommended)
114
+
115
+ You can generate type annotations for `aiobotocore` package locally with
116
+ `mypy-boto3-builder`. Use
117
+ [uv](https://docs.astral.sh/uv/getting-started/installation/) for build
118
+ isolation.
119
+
120
+ 1. Run mypy-boto3-builder in your package root directory:
121
+ `uvx --with 'aiobotocore==2.23.2' mypy-boto3-builder`
122
+ 2. Select `aiobotocore` AWS SDK.
123
+ 3. Add `S3Vectors` service.
124
+ 4. Use provided commands to install generated packages.
125
+
126
+ <a id="from-pypi-with-pip"></a>
127
+
128
+ ### From PyPI with pip
129
+
130
+ Install `types-aiobotocore` for `S3Vectors` service.
131
+
132
+ ```bash
133
+ # install with aiobotocore type annotations
134
+ python -m pip install 'types-aiobotocore[s3vectors]'
135
+
136
+ # Lite version does not provide session.client/resource overloads
137
+ # it is more RAM-friendly, but requires explicit type annotations
138
+ python -m pip install 'types-aiobotocore-lite[s3vectors]'
139
+
140
+ # standalone installation
141
+ python -m pip install types-aiobotocore-s3vectors
142
+ ```
143
+
144
+ <a id="how-to-uninstall"></a>
145
+
146
+ ## How to uninstall
147
+
148
+ ```bash
149
+ python -m pip uninstall -y types-aiobotocore-s3vectors
150
+ ```
151
+
152
+ <a id="usage"></a>
153
+
154
+ ## Usage
155
+
156
+ <a id="vscode"></a>
157
+
158
+ ### VSCode
159
+
160
+ - Install
161
+ [Python extension](https://marketplace.visualstudio.com/items?itemName=ms-python.python)
162
+ - Install
163
+ [Pylance extension](https://marketplace.visualstudio.com/items?itemName=ms-python.vscode-pylance)
164
+ - Set `Pylance` as your Python Language Server
165
+ - Install `types-aiobotocore[s3vectors]` in your environment:
166
+
167
+ ```bash
168
+ python -m pip install 'types-aiobotocore[s3vectors]'
169
+ ```
170
+
171
+ Both type checking and code completion should now work. No explicit type
172
+ annotations required, write your `aiobotocore` code as usual.
173
+
174
+ <a id="pycharm"></a>
175
+
176
+ ### PyCharm
177
+
178
+ > ⚠️ Due to slow PyCharm performance on `Literal` overloads (issue
179
+ > [PY-40997](https://youtrack.jetbrains.com/issue/PY-40997)), it is recommended
180
+ > to use
181
+ > [types-aiobotocore-lite](https://pypi.org/project/types-aiobotocore-lite/)
182
+ > until the issue is resolved.
183
+
184
+ > ⚠️ If you experience slow performance and high CPU usage, try to disable
185
+ > `PyCharm` type checker and use [mypy](https://github.com/python/mypy) or
186
+ > [pyright](https://github.com/microsoft/pyright) instead.
187
+
188
+ > ⚠️ To continue using `PyCharm` type checker, you can try to replace
189
+ > `types-aiobotocore` with
190
+ > [types-aiobotocore-lite](https://pypi.org/project/types-aiobotocore-lite/):
191
+
192
+ ```bash
193
+ pip uninstall types-aiobotocore
194
+ pip install types-aiobotocore-lite
195
+ ```
196
+
197
+ Install `types-aiobotocore[s3vectors]` in your environment:
198
+
199
+ ```bash
200
+ python -m pip install 'types-aiobotocore[s3vectors]'
201
+ ```
202
+
203
+ Both type checking and code completion should now work.
204
+
205
+ <a id="emacs"></a>
206
+
207
+ ### Emacs
208
+
209
+ - Install `types-aiobotocore` with services you use in your environment:
210
+
211
+ ```bash
212
+ python -m pip install 'types-aiobotocore[s3vectors]'
213
+ ```
214
+
215
+ - Install [use-package](https://github.com/jwiegley/use-package),
216
+ [lsp](https://github.com/emacs-lsp/lsp-mode/),
217
+ [company](https://github.com/company-mode/company-mode) and
218
+ [flycheck](https://github.com/flycheck/flycheck) packages
219
+ - Install [lsp-pyright](https://github.com/emacs-lsp/lsp-pyright) package
220
+
221
+ ```elisp
222
+ (use-package lsp-pyright
223
+ :ensure t
224
+ :hook (python-mode . (lambda ()
225
+ (require 'lsp-pyright)
226
+ (lsp))) ; or lsp-deferred
227
+ :init (when (executable-find "python3")
228
+ (setq lsp-pyright-python-executable-cmd "python3"))
229
+ )
230
+ ```
231
+
232
+ - Make sure emacs uses the environment where you have installed
233
+ `types-aiobotocore`
234
+
235
+ Type checking should now work. No explicit type annotations required, write
236
+ your `aiobotocore` code as usual.
237
+
238
+ <a id="sublime-text"></a>
239
+
240
+ ### Sublime Text
241
+
242
+ - Install `types-aiobotocore[s3vectors]` with services you use in your
243
+ environment:
244
+
245
+ ```bash
246
+ python -m pip install 'types-aiobotocore[s3vectors]'
247
+ ```
248
+
249
+ - Install [LSP-pyright](https://github.com/sublimelsp/LSP-pyright) package
250
+
251
+ Type checking should now work. No explicit type annotations required, write
252
+ your `aiobotocore` code as usual.
253
+
254
+ <a id="other-ides"></a>
255
+
256
+ ### Other IDEs
257
+
258
+ Not tested, but as long as your IDE supports `mypy` or `pyright`, everything
259
+ should work.
260
+
261
+ <a id="mypy"></a>
262
+
263
+ ### mypy
264
+
265
+ - Install `mypy`: `python -m pip install mypy`
266
+ - Install `types-aiobotocore[s3vectors]` in your environment:
267
+
268
+ ```bash
269
+ python -m pip install 'types-aiobotocore[s3vectors]'
270
+ ```
271
+
272
+ Type checking should now work. No explicit type annotations required, write
273
+ your `aiobotocore` code as usual.
274
+
275
+ <a id="pyright"></a>
276
+
277
+ ### pyright
278
+
279
+ - Install `pyright`: `npm i -g pyright`
280
+ - Install `types-aiobotocore[s3vectors]` in your environment:
281
+
282
+ ```bash
283
+ python -m pip install 'types-aiobotocore[s3vectors]'
284
+ ```
285
+
286
+ Optionally, you can install `types-aiobotocore` to `typings` directory.
287
+
288
+ Type checking should now work. No explicit type annotations required, write
289
+ your `aiobotocore` code as usual.
290
+
291
+ <a id="pylint-compatibility"></a>
292
+
293
+ ### Pylint compatibility
294
+
295
+ It is totally safe to use `TYPE_CHECKING` flag in order to avoid
296
+ `types-aiobotocore-s3vectors` dependency in production. However, there is an
297
+ issue in `pylint` that it complains about undefined variables. To fix it, set
298
+ all types to `object` in non-`TYPE_CHECKING` mode.
299
+
300
+ ```python
301
+ from typing import TYPE_CHECKING
302
+
303
+ if TYPE_CHECKING:
304
+ from types_aiobotocore_ec2 import EC2Client, EC2ServiceResource
305
+ from types_aiobotocore_ec2.waiters import BundleTaskCompleteWaiter
306
+ from types_aiobotocore_ec2.paginators import DescribeVolumesPaginator
307
+ else:
308
+ EC2Client = object
309
+ EC2ServiceResource = object
310
+ BundleTaskCompleteWaiter = object
311
+ DescribeVolumesPaginator = object
312
+
313
+ ...
314
+ ```
315
+
316
+ <a id="explicit-type-annotations"></a>
317
+
318
+ ## Explicit type annotations
319
+
320
+ <a id="client-annotations"></a>
321
+
322
+ ### Client annotations
323
+
324
+ `S3VectorsClient` provides annotations for
325
+ `session.create_client("s3vectors")`.
326
+
327
+ ```python
328
+ from aiobotocore.session import get_session
329
+
330
+ from types_aiobotocore_s3vectors import S3VectorsClient
331
+
332
+ session = get_session()
333
+ async with session.create_client("s3vectors") as client:
334
+ client: S3VectorsClient
335
+ # now client usage is checked by mypy and IDE should provide code completion
336
+ ```
337
+
338
+ <a id="paginators-annotations"></a>
339
+
340
+ ### Paginators annotations
341
+
342
+ `types_aiobotocore_s3vectors.paginator` module contains type annotations for
343
+ all paginators.
344
+
345
+ ```python
346
+ from aiobotocore.session import get_session
347
+
348
+ from types_aiobotocore_s3vectors import S3VectorsClient
349
+ from types_aiobotocore_s3vectors.paginator import (
350
+ ListIndexesPaginator,
351
+ ListVectorBucketsPaginator,
352
+ ListVectorsPaginator,
353
+ )
354
+
355
+ session = get_session()
356
+ async with session.create_client("s3vectors") as client:
357
+ client: S3VectorsClient
358
+
359
+ # Explicit type annotations are optional here
360
+ # Types should be correctly discovered by mypy and IDEs
361
+ list_indexes_paginator: ListIndexesPaginator = client.get_paginator("list_indexes")
362
+ list_vector_buckets_paginator: ListVectorBucketsPaginator = client.get_paginator(
363
+ "list_vector_buckets"
364
+ )
365
+ list_vectors_paginator: ListVectorsPaginator = client.get_paginator("list_vectors")
366
+ ```
367
+
368
+ <a id="literals"></a>
369
+
370
+ ### Literals
371
+
372
+ `types_aiobotocore_s3vectors.literals` module contains literals extracted from
373
+ shapes that can be used in user code for type checking.
374
+
375
+ Full list of `S3Vectors` Literals can be found in
376
+ [docs](https://youtype.github.io/types_aiobotocore_docs/types_aiobotocore_s3vectors/literals/).
377
+
378
+ ```python
379
+ from types_aiobotocore_s3vectors.literals import DataTypeType
380
+
381
+
382
+ def check_value(value: DataTypeType) -> bool: ...
383
+ ```
384
+
385
+ <a id="type-definitions"></a>
386
+
387
+ ### Type definitions
388
+
389
+ `types_aiobotocore_s3vectors.type_defs` module contains structures and shapes
390
+ assembled to typed dictionaries and unions for additional type checking.
391
+
392
+ Full list of `S3Vectors` TypeDefs can be found in
393
+ [docs](https://youtype.github.io/types_aiobotocore_docs/types_aiobotocore_s3vectors/type_defs/).
394
+
395
+ ```python
396
+ # TypedDict usage example
397
+ from types_aiobotocore_s3vectors.type_defs import EncryptionConfigurationTypeDef
398
+
399
+
400
+ def get_value() -> EncryptionConfigurationTypeDef:
401
+ return {
402
+ "sseType": ...,
403
+ }
404
+ ```
405
+
406
+ <a id="how-it-works"></a>
407
+
408
+ ## How it works
409
+
410
+ Fully automated
411
+ [mypy-boto3-builder](https://github.com/youtype/mypy_boto3_builder) carefully
412
+ generates type annotations for each service, patiently waiting for
413
+ `aiobotocore` updates. It delivers drop-in type annotations for you and makes
414
+ sure that:
415
+
416
+ - All available `aiobotocore` services are covered.
417
+ - Each public class and method of every `aiobotocore` service gets valid type
418
+ annotations extracted from `botocore` schemas.
419
+ - Type annotations include up-to-date documentation.
420
+ - Link to documentation is provided for every method.
421
+ - Code is processed by [ruff](https://docs.astral.sh/ruff/) for readability.
422
+
423
+ <a id="what's-new"></a>
424
+
425
+ ## What's new
426
+
427
+ <a id="implemented-features"></a>
428
+
429
+ ### Implemented features
430
+
431
+ - Fully type annotated `boto3`, `botocore`, `aiobotocore` and `aioboto3`
432
+ libraries
433
+ - `mypy`, `pyright`, `VSCode`, `PyCharm`, `Sublime Text` and `Emacs`
434
+ compatibility
435
+ - `Client`, `ServiceResource`, `Resource`, `Waiter` `Paginator` type
436
+ annotations for each service
437
+ - Generated `TypeDefs` for each service
438
+ - Generated `Literals` for each service
439
+ - Auto discovery of types for `boto3.client` and `boto3.resource` calls
440
+ - Auto discovery of types for `session.client` and `session.resource` calls
441
+ - Auto discovery of types for `client.get_waiter` and `client.get_paginator`
442
+ calls
443
+ - Auto discovery of types for `ServiceResource` and `Resource` collections
444
+ - Auto discovery of types for `aiobotocore.Session.create_client` calls
445
+
446
+ <a id="latest-changes"></a>
447
+
448
+ ### Latest changes
449
+
450
+ Builder changelog can be found in
451
+ [Releases](https://github.com/youtype/mypy_boto3_builder/releases).
452
+
453
+ <a id="versioning"></a>
454
+
455
+ ## Versioning
456
+
457
+ `types-aiobotocore-s3vectors` version is the same as related `aiobotocore`
458
+ version and follows
459
+ [Python Packaging version specifiers](https://packaging.python.org/en/latest/specifications/version-specifiers/).
460
+
461
+ <a id="thank-you"></a>
462
+
463
+ ## Thank you
464
+
465
+ - [Allie Fitter](https://github.com/alliefitter) for
466
+ [boto3-type-annotations](https://pypi.org/project/boto3-type-annotations/),
467
+ this package is based on top of his work
468
+ - [black](https://github.com/psf/black) developers for an awesome formatting
469
+ tool
470
+ - [Timothy Edmund Crosley](https://github.com/timothycrosley) for
471
+ [isort](https://github.com/PyCQA/isort) and how flexible it is
472
+ - [mypy](https://github.com/python/mypy) developers for doing all dirty work
473
+ for us
474
+ - [pyright](https://github.com/microsoft/pyright) team for the new era of typed
475
+ Python
476
+
477
+ <a id="documentation"></a>
478
+
479
+ ## Documentation
480
+
481
+ All services type annotations can be found in
482
+ [aiobotocore docs](https://youtype.github.io/types_aiobotocore_docs/types_aiobotocore_s3vectors/)
483
+
484
+ <a id="support-and-contributing"></a>
485
+
486
+ ## Support and contributing
487
+
488
+ This package is auto-generated. Please reports any bugs or request new features
489
+ in [mypy-boto3-builder](https://github.com/youtype/mypy_boto3_builder/issues/)
490
+ repository.