This repository has been archived by the owner on Jul 6, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
poetry.lock
6865 lines (6352 loc) · 381 KB
/
poetry.lock
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
# This file is automatically @generated by Poetry 1.4.2 and should not be changed by hand.
[[package]]
name = "appnope"
version = "0.1.3"
description = "Disable App Nap on macOS >= 10.9"
category = "dev"
optional = false
python-versions = "*"
files = [
{file = "appnope-0.1.3-py2.py3-none-any.whl", hash = "sha256:265a455292d0bd8a72453494fa24df5a11eb18373a60c7c0430889f22548605e"},
{file = "appnope-0.1.3.tar.gz", hash = "sha256:02bd91c4de869fbb1e1c50aafc4098827a7a54ab2f39d9dcba6c9547ed920e24"},
]
[[package]]
name = "astroid"
version = "3.0.2"
description = "An abstract syntax tree for Python with inference support."
category = "dev"
optional = false
python-versions = ">=3.8.0"
files = [
{file = "astroid-3.0.2-py3-none-any.whl", hash = "sha256:d6e62862355f60e716164082d6b4b041d38e2a8cf1c7cd953ded5108bac8ff5c"},
{file = "astroid-3.0.2.tar.gz", hash = "sha256:4a61cf0a59097c7bb52689b0fd63717cd2a8a14dc9f1eee97b82d814881c8c91"},
]
[[package]]
name = "asttokens"
version = "2.4.1"
description = "Annotate AST trees with source code positions"
category = "dev"
optional = false
python-versions = "*"
files = [
{file = "asttokens-2.4.1-py2.py3-none-any.whl", hash = "sha256:051ed49c3dcae8913ea7cd08e46a606dba30b79993209636c4875bc1d637bc24"},
{file = "asttokens-2.4.1.tar.gz", hash = "sha256:b03869718ba9a6eb027e134bfdf69f38a236d681c83c160d510768af11254ba0"},
]
[package.dependencies]
six = ">=1.12.0"
[package.extras]
astroid = ["astroid (>=1,<2)", "astroid (>=2,<4)"]
test = ["astroid (>=1,<2)", "astroid (>=2,<4)", "pytest"]
[[package]]
name = "black"
version = "23.12.1"
description = "The uncompromising code formatter."
category = "dev"
optional = false
python-versions = ">=3.8"
files = [
{file = "black-23.12.1-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:e0aaf6041986767a5e0ce663c7a2f0e9eaf21e6ff87a5f95cbf3675bfd4c41d2"},
{file = "black-23.12.1-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:c88b3711d12905b74206227109272673edce0cb29f27e1385f33b0163c414bba"},
{file = "black-23.12.1-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:a920b569dc6b3472513ba6ddea21f440d4b4c699494d2e972a1753cdc25df7b0"},
{file = "black-23.12.1-cp310-cp310-win_amd64.whl", hash = "sha256:3fa4be75ef2a6b96ea8d92b1587dd8cb3a35c7e3d51f0738ced0781c3aa3a5a3"},
{file = "black-23.12.1-cp311-cp311-macosx_10_9_x86_64.whl", hash = "sha256:8d4df77958a622f9b5a4c96edb4b8c0034f8434032ab11077ec6c56ae9f384ba"},
{file = "black-23.12.1-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:602cfb1196dc692424c70b6507593a2b29aac0547c1be9a1d1365f0d964c353b"},
{file = "black-23.12.1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:9c4352800f14be5b4864016882cdba10755bd50805c95f728011bcb47a4afd59"},
{file = "black-23.12.1-cp311-cp311-win_amd64.whl", hash = "sha256:0808494f2b2df923ffc5723ed3c7b096bd76341f6213989759287611e9837d50"},
{file = "black-23.12.1-cp312-cp312-macosx_10_9_x86_64.whl", hash = "sha256:25e57fd232a6d6ff3f4478a6fd0580838e47c93c83eaf1ccc92d4faf27112c4e"},
{file = "black-23.12.1-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:2d9e13db441c509a3763a7a3d9a49ccc1b4e974a47be4e08ade2a228876500ec"},
{file = "black-23.12.1-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:6d1bd9c210f8b109b1762ec9fd36592fdd528485aadb3f5849b2740ef17e674e"},
{file = "black-23.12.1-cp312-cp312-win_amd64.whl", hash = "sha256:ae76c22bde5cbb6bfd211ec343ded2163bba7883c7bc77f6b756a1049436fbb9"},
{file = "black-23.12.1-cp38-cp38-macosx_10_9_x86_64.whl", hash = "sha256:1fa88a0f74e50e4487477bc0bb900c6781dbddfdfa32691e780bf854c3b4a47f"},
{file = "black-23.12.1-cp38-cp38-macosx_11_0_arm64.whl", hash = "sha256:a4d6a9668e45ad99d2f8ec70d5c8c04ef4f32f648ef39048d010b0689832ec6d"},
{file = "black-23.12.1-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:b18fb2ae6c4bb63eebe5be6bd869ba2f14fd0259bda7d18a46b764d8fb86298a"},
{file = "black-23.12.1-cp38-cp38-win_amd64.whl", hash = "sha256:c04b6d9d20e9c13f43eee8ea87d44156b8505ca8a3c878773f68b4e4812a421e"},
{file = "black-23.12.1-cp39-cp39-macosx_10_9_x86_64.whl", hash = "sha256:3e1b38b3135fd4c025c28c55ddfc236b05af657828a8a6abe5deec419a0b7055"},
{file = "black-23.12.1-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:4f0031eaa7b921db76decd73636ef3a12c942ed367d8c3841a0739412b260a54"},
{file = "black-23.12.1-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:97e56155c6b737854e60a9ab1c598ff2533d57e7506d97af5481141671abf3ea"},
{file = "black-23.12.1-cp39-cp39-win_amd64.whl", hash = "sha256:dd15245c8b68fe2b6bd0f32c1556509d11bb33aec9b5d0866dd8e2ed3dba09c2"},
{file = "black-23.12.1-py3-none-any.whl", hash = "sha256:78baad24af0f033958cad29731e27363183e140962595def56423e626f4bee3e"},
{file = "black-23.12.1.tar.gz", hash = "sha256:4ce3ef14ebe8d9509188014d96af1c456a910d5b5cbf434a09fef7e024b3d0d5"},
]
[package.dependencies]
click = ">=8.0.0"
mypy-extensions = ">=0.4.3"
packaging = ">=22.0"
pathspec = ">=0.9.0"
platformdirs = ">=2"
[package.extras]
colorama = ["colorama (>=0.4.3)"]
d = ["aiohttp (>=3.7.4)", "aiohttp (>=3.7.4,!=3.9.0)"]
jupyter = ["ipython (>=7.8.0)", "tokenize-rt (>=3.2.0)"]
uvloop = ["uvloop (>=0.15.2)"]
[[package]]
name = "boto3"
version = "1.34.9"
description = "The AWS SDK for Python"
category = "main"
optional = false
python-versions = ">= 3.8"
files = [
{file = "boto3-1.34.9-py3-none-any.whl", hash = "sha256:8e48343d52389041af053992decf651bc4fc7b2d65eca12acdcff62d446ecdf4"},
{file = "boto3-1.34.9.tar.gz", hash = "sha256:18c386a55e461749e6c9c8a10627a230db18a20dd72f2950ce19546974f15cd5"},
]
[package.dependencies]
botocore = ">=1.34.9,<1.35.0"
jmespath = ">=0.7.1,<2.0.0"
s3transfer = ">=0.10.0,<0.11.0"
[package.extras]
crt = ["botocore[crt] (>=1.21.0,<2.0a0)"]
[[package]]
name = "boto3-stubs"
version = "1.34.9"
description = "Type annotations for boto3 1.34.9 generated with mypy-boto3-builder 7.23.0"
category = "dev"
optional = false
python-versions = ">=3.8"
files = [
{file = "boto3-stubs-1.34.9.tar.gz", hash = "sha256:41220432e898a7a3fa60bb52ef2d49c864f5b38e2baa6a6235f57387325a242e"},
{file = "boto3_stubs-1.34.9-py3-none-any.whl", hash = "sha256:d75fa019e181fd87a23b7684684da47e3fba9c501bc4bd1d70ccef21c1b9bf8b"},
]
[package.dependencies]
botocore-stubs = "*"
mypy-boto3-accessanalyzer = {version = ">=1.34.0,<1.35.0", optional = true, markers = "extra == \"all\""}
mypy-boto3-account = {version = ">=1.34.0,<1.35.0", optional = true, markers = "extra == \"all\""}
mypy-boto3-acm = {version = ">=1.34.0,<1.35.0", optional = true, markers = "extra == \"all\""}
mypy-boto3-acm-pca = {version = ">=1.34.0,<1.35.0", optional = true, markers = "extra == \"all\""}
mypy-boto3-alexaforbusiness = {version = ">=1.34.0,<1.35.0", optional = true, markers = "extra == \"all\""}
mypy-boto3-amp = {version = ">=1.34.0,<1.35.0", optional = true, markers = "extra == \"all\""}
mypy-boto3-amplify = {version = ">=1.34.0,<1.35.0", optional = true, markers = "extra == \"all\""}
mypy-boto3-amplifybackend = {version = ">=1.34.0,<1.35.0", optional = true, markers = "extra == \"all\""}
mypy-boto3-amplifyuibuilder = {version = ">=1.34.0,<1.35.0", optional = true, markers = "extra == \"all\""}
mypy-boto3-apigateway = {version = ">=1.34.0,<1.35.0", optional = true, markers = "extra == \"all\""}
mypy-boto3-apigatewaymanagementapi = {version = ">=1.34.0,<1.35.0", optional = true, markers = "extra == \"all\""}
mypy-boto3-apigatewayv2 = {version = ">=1.34.0,<1.35.0", optional = true, markers = "extra == \"all\""}
mypy-boto3-appconfig = {version = ">=1.34.0,<1.35.0", optional = true, markers = "extra == \"all\""}
mypy-boto3-appconfigdata = {version = ">=1.34.0,<1.35.0", optional = true, markers = "extra == \"all\""}
mypy-boto3-appfabric = {version = ">=1.34.0,<1.35.0", optional = true, markers = "extra == \"all\""}
mypy-boto3-appflow = {version = ">=1.34.0,<1.35.0", optional = true, markers = "extra == \"all\""}
mypy-boto3-appintegrations = {version = ">=1.34.0,<1.35.0", optional = true, markers = "extra == \"all\""}
mypy-boto3-application-autoscaling = {version = ">=1.34.0,<1.35.0", optional = true, markers = "extra == \"all\""}
mypy-boto3-application-insights = {version = ">=1.34.0,<1.35.0", optional = true, markers = "extra == \"all\""}
mypy-boto3-applicationcostprofiler = {version = ">=1.34.0,<1.35.0", optional = true, markers = "extra == \"all\""}
mypy-boto3-appmesh = {version = ">=1.34.0,<1.35.0", optional = true, markers = "extra == \"all\""}
mypy-boto3-apprunner = {version = ">=1.34.0,<1.35.0", optional = true, markers = "extra == \"all\""}
mypy-boto3-appstream = {version = ">=1.34.0,<1.35.0", optional = true, markers = "extra == \"all\""}
mypy-boto3-appsync = {version = ">=1.34.0,<1.35.0", optional = true, markers = "extra == \"all\""}
mypy-boto3-arc-zonal-shift = {version = ">=1.34.0,<1.35.0", optional = true, markers = "extra == \"all\""}
mypy-boto3-athena = {version = ">=1.34.0,<1.35.0", optional = true, markers = "extra == \"all\""}
mypy-boto3-auditmanager = {version = ">=1.34.0,<1.35.0", optional = true, markers = "extra == \"all\""}
mypy-boto3-autoscaling = {version = ">=1.34.0,<1.35.0", optional = true, markers = "extra == \"all\""}
mypy-boto3-autoscaling-plans = {version = ">=1.34.0,<1.35.0", optional = true, markers = "extra == \"all\""}
mypy-boto3-b2bi = {version = ">=1.34.0,<1.35.0", optional = true, markers = "extra == \"all\""}
mypy-boto3-backup = {version = ">=1.34.0,<1.35.0", optional = true, markers = "extra == \"all\""}
mypy-boto3-backup-gateway = {version = ">=1.34.0,<1.35.0", optional = true, markers = "extra == \"all\""}
mypy-boto3-backupstorage = {version = ">=1.34.0,<1.35.0", optional = true, markers = "extra == \"all\""}
mypy-boto3-batch = {version = ">=1.34.0,<1.35.0", optional = true, markers = "extra == \"all\""}
mypy-boto3-bcm-data-exports = {version = ">=1.34.0,<1.35.0", optional = true, markers = "extra == \"all\""}
mypy-boto3-bedrock = {version = ">=1.34.0,<1.35.0", optional = true, markers = "extra == \"all\""}
mypy-boto3-bedrock-agent = {version = ">=1.34.0,<1.35.0", optional = true, markers = "extra == \"all\""}
mypy-boto3-bedrock-agent-runtime = {version = ">=1.34.0,<1.35.0", optional = true, markers = "extra == \"all\""}
mypy-boto3-bedrock-runtime = {version = ">=1.34.0,<1.35.0", optional = true, markers = "extra == \"all\""}
mypy-boto3-billingconductor = {version = ">=1.34.0,<1.35.0", optional = true, markers = "extra == \"all\""}
mypy-boto3-braket = {version = ">=1.34.0,<1.35.0", optional = true, markers = "extra == \"all\""}
mypy-boto3-budgets = {version = ">=1.34.0,<1.35.0", optional = true, markers = "extra == \"all\""}
mypy-boto3-ce = {version = ">=1.34.0,<1.35.0", optional = true, markers = "extra == \"all\""}
mypy-boto3-chime = {version = ">=1.34.0,<1.35.0", optional = true, markers = "extra == \"all\""}
mypy-boto3-chime-sdk-identity = {version = ">=1.34.0,<1.35.0", optional = true, markers = "extra == \"all\""}
mypy-boto3-chime-sdk-media-pipelines = {version = ">=1.34.0,<1.35.0", optional = true, markers = "extra == \"all\""}
mypy-boto3-chime-sdk-meetings = {version = ">=1.34.0,<1.35.0", optional = true, markers = "extra == \"all\""}
mypy-boto3-chime-sdk-messaging = {version = ">=1.34.0,<1.35.0", optional = true, markers = "extra == \"all\""}
mypy-boto3-chime-sdk-voice = {version = ">=1.34.0,<1.35.0", optional = true, markers = "extra == \"all\""}
mypy-boto3-cleanrooms = {version = ">=1.34.0,<1.35.0", optional = true, markers = "extra == \"all\""}
mypy-boto3-cleanroomsml = {version = ">=1.34.0,<1.35.0", optional = true, markers = "extra == \"all\""}
mypy-boto3-cloud9 = {version = ">=1.34.0,<1.35.0", optional = true, markers = "extra == \"all\""}
mypy-boto3-cloudcontrol = {version = ">=1.34.0,<1.35.0", optional = true, markers = "extra == \"all\""}
mypy-boto3-clouddirectory = {version = ">=1.34.0,<1.35.0", optional = true, markers = "extra == \"all\""}
mypy-boto3-cloudformation = {version = ">=1.34.0,<1.35.0", optional = true, markers = "extra == \"all\""}
mypy-boto3-cloudfront = {version = ">=1.34.0,<1.35.0", optional = true, markers = "extra == \"all\""}
mypy-boto3-cloudfront-keyvaluestore = {version = ">=1.34.0,<1.35.0", optional = true, markers = "extra == \"all\""}
mypy-boto3-cloudhsm = {version = ">=1.34.0,<1.35.0", optional = true, markers = "extra == \"all\""}
mypy-boto3-cloudhsmv2 = {version = ">=1.34.0,<1.35.0", optional = true, markers = "extra == \"all\""}
mypy-boto3-cloudsearch = {version = ">=1.34.0,<1.35.0", optional = true, markers = "extra == \"all\""}
mypy-boto3-cloudsearchdomain = {version = ">=1.34.0,<1.35.0", optional = true, markers = "extra == \"all\""}
mypy-boto3-cloudtrail = {version = ">=1.34.0,<1.35.0", optional = true, markers = "extra == \"all\""}
mypy-boto3-cloudtrail-data = {version = ">=1.34.0,<1.35.0", optional = true, markers = "extra == \"all\""}
mypy-boto3-cloudwatch = {version = ">=1.34.0,<1.35.0", optional = true, markers = "extra == \"all\""}
mypy-boto3-codeartifact = {version = ">=1.34.0,<1.35.0", optional = true, markers = "extra == \"all\""}
mypy-boto3-codebuild = {version = ">=1.34.0,<1.35.0", optional = true, markers = "extra == \"all\""}
mypy-boto3-codecatalyst = {version = ">=1.34.0,<1.35.0", optional = true, markers = "extra == \"all\""}
mypy-boto3-codecommit = {version = ">=1.34.0,<1.35.0", optional = true, markers = "extra == \"all\""}
mypy-boto3-codedeploy = {version = ">=1.34.0,<1.35.0", optional = true, markers = "extra == \"all\""}
mypy-boto3-codeguru-reviewer = {version = ">=1.34.0,<1.35.0", optional = true, markers = "extra == \"all\""}
mypy-boto3-codeguru-security = {version = ">=1.34.0,<1.35.0", optional = true, markers = "extra == \"all\""}
mypy-boto3-codeguruprofiler = {version = ">=1.34.0,<1.35.0", optional = true, markers = "extra == \"all\""}
mypy-boto3-codepipeline = {version = ">=1.34.0,<1.35.0", optional = true, markers = "extra == \"all\""}
mypy-boto3-codestar = {version = ">=1.34.0,<1.35.0", optional = true, markers = "extra == \"all\""}
mypy-boto3-codestar-connections = {version = ">=1.34.0,<1.35.0", optional = true, markers = "extra == \"all\""}
mypy-boto3-codestar-notifications = {version = ">=1.34.0,<1.35.0", optional = true, markers = "extra == \"all\""}
mypy-boto3-cognito-identity = {version = ">=1.34.0,<1.35.0", optional = true, markers = "extra == \"all\""}
mypy-boto3-cognito-idp = {version = ">=1.34.0,<1.35.0", optional = true, markers = "extra == \"all\""}
mypy-boto3-cognito-sync = {version = ">=1.34.0,<1.35.0", optional = true, markers = "extra == \"all\""}
mypy-boto3-comprehend = {version = ">=1.34.0,<1.35.0", optional = true, markers = "extra == \"all\""}
mypy-boto3-comprehendmedical = {version = ">=1.34.0,<1.35.0", optional = true, markers = "extra == \"all\""}
mypy-boto3-compute-optimizer = {version = ">=1.34.0,<1.35.0", optional = true, markers = "extra == \"all\""}
mypy-boto3-config = {version = ">=1.34.0,<1.35.0", optional = true, markers = "extra == \"all\""}
mypy-boto3-connect = {version = ">=1.34.0,<1.35.0", optional = true, markers = "extra == \"all\""}
mypy-boto3-connect-contact-lens = {version = ">=1.34.0,<1.35.0", optional = true, markers = "extra == \"all\""}
mypy-boto3-connectcampaigns = {version = ">=1.34.0,<1.35.0", optional = true, markers = "extra == \"all\""}
mypy-boto3-connectcases = {version = ">=1.34.0,<1.35.0", optional = true, markers = "extra == \"all\""}
mypy-boto3-connectparticipant = {version = ">=1.34.0,<1.35.0", optional = true, markers = "extra == \"all\""}
mypy-boto3-controltower = {version = ">=1.34.0,<1.35.0", optional = true, markers = "extra == \"all\""}
mypy-boto3-cost-optimization-hub = {version = ">=1.34.0,<1.35.0", optional = true, markers = "extra == \"all\""}
mypy-boto3-cur = {version = ">=1.34.0,<1.35.0", optional = true, markers = "extra == \"all\""}
mypy-boto3-customer-profiles = {version = ">=1.34.0,<1.35.0", optional = true, markers = "extra == \"all\""}
mypy-boto3-databrew = {version = ">=1.34.0,<1.35.0", optional = true, markers = "extra == \"all\""}
mypy-boto3-dataexchange = {version = ">=1.34.0,<1.35.0", optional = true, markers = "extra == \"all\""}
mypy-boto3-datapipeline = {version = ">=1.34.0,<1.35.0", optional = true, markers = "extra == \"all\""}
mypy-boto3-datasync = {version = ">=1.34.0,<1.35.0", optional = true, markers = "extra == \"all\""}
mypy-boto3-datazone = {version = ">=1.34.0,<1.35.0", optional = true, markers = "extra == \"all\""}
mypy-boto3-dax = {version = ">=1.34.0,<1.35.0", optional = true, markers = "extra == \"all\""}
mypy-boto3-detective = {version = ">=1.34.0,<1.35.0", optional = true, markers = "extra == \"all\""}
mypy-boto3-devicefarm = {version = ">=1.34.0,<1.35.0", optional = true, markers = "extra == \"all\""}
mypy-boto3-devops-guru = {version = ">=1.34.0,<1.35.0", optional = true, markers = "extra == \"all\""}
mypy-boto3-directconnect = {version = ">=1.34.0,<1.35.0", optional = true, markers = "extra == \"all\""}
mypy-boto3-discovery = {version = ">=1.34.0,<1.35.0", optional = true, markers = "extra == \"all\""}
mypy-boto3-dlm = {version = ">=1.34.0,<1.35.0", optional = true, markers = "extra == \"all\""}
mypy-boto3-dms = {version = ">=1.34.0,<1.35.0", optional = true, markers = "extra == \"all\""}
mypy-boto3-docdb = {version = ">=1.34.0,<1.35.0", optional = true, markers = "extra == \"all\""}
mypy-boto3-docdb-elastic = {version = ">=1.34.0,<1.35.0", optional = true, markers = "extra == \"all\""}
mypy-boto3-drs = {version = ">=1.34.0,<1.35.0", optional = true, markers = "extra == \"all\""}
mypy-boto3-ds = {version = ">=1.34.0,<1.35.0", optional = true, markers = "extra == \"all\""}
mypy-boto3-dynamodb = {version = ">=1.34.0,<1.35.0", optional = true, markers = "extra == \"all\""}
mypy-boto3-dynamodbstreams = {version = ">=1.34.0,<1.35.0", optional = true, markers = "extra == \"all\""}
mypy-boto3-ebs = {version = ">=1.34.0,<1.35.0", optional = true, markers = "extra == \"all\""}
mypy-boto3-ec2 = {version = ">=1.34.0,<1.35.0", optional = true, markers = "extra == \"all\""}
mypy-boto3-ec2-instance-connect = {version = ">=1.34.0,<1.35.0", optional = true, markers = "extra == \"all\""}
mypy-boto3-ecr = {version = ">=1.34.0,<1.35.0", optional = true, markers = "extra == \"all\""}
mypy-boto3-ecr-public = {version = ">=1.34.0,<1.35.0", optional = true, markers = "extra == \"all\""}
mypy-boto3-ecs = {version = ">=1.34.0,<1.35.0", optional = true, markers = "extra == \"all\""}
mypy-boto3-efs = {version = ">=1.34.0,<1.35.0", optional = true, markers = "extra == \"all\""}
mypy-boto3-eks = {version = ">=1.34.0,<1.35.0", optional = true, markers = "extra == \"all\""}
mypy-boto3-eks-auth = {version = ">=1.34.0,<1.35.0", optional = true, markers = "extra == \"all\""}
mypy-boto3-elastic-inference = {version = ">=1.34.0,<1.35.0", optional = true, markers = "extra == \"all\""}
mypy-boto3-elasticache = {version = ">=1.34.0,<1.35.0", optional = true, markers = "extra == \"all\""}
mypy-boto3-elasticbeanstalk = {version = ">=1.34.0,<1.35.0", optional = true, markers = "extra == \"all\""}
mypy-boto3-elastictranscoder = {version = ">=1.34.0,<1.35.0", optional = true, markers = "extra == \"all\""}
mypy-boto3-elb = {version = ">=1.34.0,<1.35.0", optional = true, markers = "extra == \"all\""}
mypy-boto3-elbv2 = {version = ">=1.34.0,<1.35.0", optional = true, markers = "extra == \"all\""}
mypy-boto3-emr = {version = ">=1.34.0,<1.35.0", optional = true, markers = "extra == \"all\""}
mypy-boto3-emr-containers = {version = ">=1.34.0,<1.35.0", optional = true, markers = "extra == \"all\""}
mypy-boto3-emr-serverless = {version = ">=1.34.0,<1.35.0", optional = true, markers = "extra == \"all\""}
mypy-boto3-entityresolution = {version = ">=1.34.0,<1.35.0", optional = true, markers = "extra == \"all\""}
mypy-boto3-es = {version = ">=1.34.0,<1.35.0", optional = true, markers = "extra == \"all\""}
mypy-boto3-events = {version = ">=1.34.0,<1.35.0", optional = true, markers = "extra == \"all\""}
mypy-boto3-evidently = {version = ">=1.34.0,<1.35.0", optional = true, markers = "extra == \"all\""}
mypy-boto3-finspace = {version = ">=1.34.0,<1.35.0", optional = true, markers = "extra == \"all\""}
mypy-boto3-finspace-data = {version = ">=1.34.0,<1.35.0", optional = true, markers = "extra == \"all\""}
mypy-boto3-firehose = {version = ">=1.34.0,<1.35.0", optional = true, markers = "extra == \"all\""}
mypy-boto3-fis = {version = ">=1.34.0,<1.35.0", optional = true, markers = "extra == \"all\""}
mypy-boto3-fms = {version = ">=1.34.0,<1.35.0", optional = true, markers = "extra == \"all\""}
mypy-boto3-forecast = {version = ">=1.34.0,<1.35.0", optional = true, markers = "extra == \"all\""}
mypy-boto3-forecastquery = {version = ">=1.34.0,<1.35.0", optional = true, markers = "extra == \"all\""}
mypy-boto3-frauddetector = {version = ">=1.34.0,<1.35.0", optional = true, markers = "extra == \"all\""}
mypy-boto3-freetier = {version = ">=1.34.0,<1.35.0", optional = true, markers = "extra == \"all\""}
mypy-boto3-fsx = {version = ">=1.34.0,<1.35.0", optional = true, markers = "extra == \"all\""}
mypy-boto3-gamelift = {version = ">=1.34.0,<1.35.0", optional = true, markers = "extra == \"all\""}
mypy-boto3-glacier = {version = ">=1.34.0,<1.35.0", optional = true, markers = "extra == \"all\""}
mypy-boto3-globalaccelerator = {version = ">=1.34.0,<1.35.0", optional = true, markers = "extra == \"all\""}
mypy-boto3-glue = {version = ">=1.34.0,<1.35.0", optional = true, markers = "extra == \"all\""}
mypy-boto3-grafana = {version = ">=1.34.0,<1.35.0", optional = true, markers = "extra == \"all\""}
mypy-boto3-greengrass = {version = ">=1.34.0,<1.35.0", optional = true, markers = "extra == \"all\""}
mypy-boto3-greengrassv2 = {version = ">=1.34.0,<1.35.0", optional = true, markers = "extra == \"all\""}
mypy-boto3-groundstation = {version = ">=1.34.0,<1.35.0", optional = true, markers = "extra == \"all\""}
mypy-boto3-guardduty = {version = ">=1.34.0,<1.35.0", optional = true, markers = "extra == \"all\""}
mypy-boto3-health = {version = ">=1.34.0,<1.35.0", optional = true, markers = "extra == \"all\""}
mypy-boto3-healthlake = {version = ">=1.34.0,<1.35.0", optional = true, markers = "extra == \"all\""}
mypy-boto3-honeycode = {version = ">=1.34.0,<1.35.0", optional = true, markers = "extra == \"all\""}
mypy-boto3-iam = {version = ">=1.34.0,<1.35.0", optional = true, markers = "extra == \"all\""}
mypy-boto3-identitystore = {version = ">=1.34.0,<1.35.0", optional = true, markers = "extra == \"all\""}
mypy-boto3-imagebuilder = {version = ">=1.34.0,<1.35.0", optional = true, markers = "extra == \"all\""}
mypy-boto3-importexport = {version = ">=1.34.0,<1.35.0", optional = true, markers = "extra == \"all\""}
mypy-boto3-inspector = {version = ">=1.34.0,<1.35.0", optional = true, markers = "extra == \"all\""}
mypy-boto3-inspector-scan = {version = ">=1.34.0,<1.35.0", optional = true, markers = "extra == \"all\""}
mypy-boto3-inspector2 = {version = ">=1.34.0,<1.35.0", optional = true, markers = "extra == \"all\""}
mypy-boto3-internetmonitor = {version = ">=1.34.0,<1.35.0", optional = true, markers = "extra == \"all\""}
mypy-boto3-iot = {version = ">=1.34.0,<1.35.0", optional = true, markers = "extra == \"all\""}
mypy-boto3-iot-data = {version = ">=1.34.0,<1.35.0", optional = true, markers = "extra == \"all\""}
mypy-boto3-iot-jobs-data = {version = ">=1.34.0,<1.35.0", optional = true, markers = "extra == \"all\""}
mypy-boto3-iot-roborunner = {version = ">=1.34.0,<1.35.0", optional = true, markers = "extra == \"all\""}
mypy-boto3-iot1click-devices = {version = ">=1.34.0,<1.35.0", optional = true, markers = "extra == \"all\""}
mypy-boto3-iot1click-projects = {version = ">=1.34.0,<1.35.0", optional = true, markers = "extra == \"all\""}
mypy-boto3-iotanalytics = {version = ">=1.34.0,<1.35.0", optional = true, markers = "extra == \"all\""}
mypy-boto3-iotdeviceadvisor = {version = ">=1.34.0,<1.35.0", optional = true, markers = "extra == \"all\""}
mypy-boto3-iotevents = {version = ">=1.34.0,<1.35.0", optional = true, markers = "extra == \"all\""}
mypy-boto3-iotevents-data = {version = ">=1.34.0,<1.35.0", optional = true, markers = "extra == \"all\""}
mypy-boto3-iotfleethub = {version = ">=1.34.0,<1.35.0", optional = true, markers = "extra == \"all\""}
mypy-boto3-iotfleetwise = {version = ">=1.34.0,<1.35.0", optional = true, markers = "extra == \"all\""}
mypy-boto3-iotsecuretunneling = {version = ">=1.34.0,<1.35.0", optional = true, markers = "extra == \"all\""}
mypy-boto3-iotsitewise = {version = ">=1.34.0,<1.35.0", optional = true, markers = "extra == \"all\""}
mypy-boto3-iotthingsgraph = {version = ">=1.34.0,<1.35.0", optional = true, markers = "extra == \"all\""}
mypy-boto3-iottwinmaker = {version = ">=1.34.0,<1.35.0", optional = true, markers = "extra == \"all\""}
mypy-boto3-iotwireless = {version = ">=1.34.0,<1.35.0", optional = true, markers = "extra == \"all\""}
mypy-boto3-ivs = {version = ">=1.34.0,<1.35.0", optional = true, markers = "extra == \"all\""}
mypy-boto3-ivs-realtime = {version = ">=1.34.0,<1.35.0", optional = true, markers = "extra == \"all\""}
mypy-boto3-ivschat = {version = ">=1.34.0,<1.35.0", optional = true, markers = "extra == \"all\""}
mypy-boto3-kafka = {version = ">=1.34.0,<1.35.0", optional = true, markers = "extra == \"all\""}
mypy-boto3-kafkaconnect = {version = ">=1.34.0,<1.35.0", optional = true, markers = "extra == \"all\""}
mypy-boto3-kendra = {version = ">=1.34.0,<1.35.0", optional = true, markers = "extra == \"all\""}
mypy-boto3-kendra-ranking = {version = ">=1.34.0,<1.35.0", optional = true, markers = "extra == \"all\""}
mypy-boto3-keyspaces = {version = ">=1.34.0,<1.35.0", optional = true, markers = "extra == \"all\""}
mypy-boto3-kinesis = {version = ">=1.34.0,<1.35.0", optional = true, markers = "extra == \"all\""}
mypy-boto3-kinesis-video-archived-media = {version = ">=1.34.0,<1.35.0", optional = true, markers = "extra == \"all\""}
mypy-boto3-kinesis-video-media = {version = ">=1.34.0,<1.35.0", optional = true, markers = "extra == \"all\""}
mypy-boto3-kinesis-video-signaling = {version = ">=1.34.0,<1.35.0", optional = true, markers = "extra == \"all\""}
mypy-boto3-kinesis-video-webrtc-storage = {version = ">=1.34.0,<1.35.0", optional = true, markers = "extra == \"all\""}
mypy-boto3-kinesisanalytics = {version = ">=1.34.0,<1.35.0", optional = true, markers = "extra == \"all\""}
mypy-boto3-kinesisanalyticsv2 = {version = ">=1.34.0,<1.35.0", optional = true, markers = "extra == \"all\""}
mypy-boto3-kinesisvideo = {version = ">=1.34.0,<1.35.0", optional = true, markers = "extra == \"all\""}
mypy-boto3-kms = {version = ">=1.34.0,<1.35.0", optional = true, markers = "extra == \"all\""}
mypy-boto3-lakeformation = {version = ">=1.34.0,<1.35.0", optional = true, markers = "extra == \"all\""}
mypy-boto3-lambda = {version = ">=1.34.0,<1.35.0", optional = true, markers = "extra == \"all\""}
mypy-boto3-launch-wizard = {version = ">=1.34.0,<1.35.0", optional = true, markers = "extra == \"all\""}
mypy-boto3-lex-models = {version = ">=1.34.0,<1.35.0", optional = true, markers = "extra == \"all\""}
mypy-boto3-lex-runtime = {version = ">=1.34.0,<1.35.0", optional = true, markers = "extra == \"all\""}
mypy-boto3-lexv2-models = {version = ">=1.34.0,<1.35.0", optional = true, markers = "extra == \"all\""}
mypy-boto3-lexv2-runtime = {version = ">=1.34.0,<1.35.0", optional = true, markers = "extra == \"all\""}
mypy-boto3-license-manager = {version = ">=1.34.0,<1.35.0", optional = true, markers = "extra == \"all\""}
mypy-boto3-license-manager-linux-subscriptions = {version = ">=1.34.0,<1.35.0", optional = true, markers = "extra == \"all\""}
mypy-boto3-license-manager-user-subscriptions = {version = ">=1.34.0,<1.35.0", optional = true, markers = "extra == \"all\""}
mypy-boto3-lightsail = {version = ">=1.34.0,<1.35.0", optional = true, markers = "extra == \"all\""}
mypy-boto3-location = {version = ">=1.34.0,<1.35.0", optional = true, markers = "extra == \"all\""}
mypy-boto3-logs = {version = ">=1.34.0,<1.35.0", optional = true, markers = "extra == \"all\""}
mypy-boto3-lookoutequipment = {version = ">=1.34.0,<1.35.0", optional = true, markers = "extra == \"all\""}
mypy-boto3-lookoutmetrics = {version = ">=1.34.0,<1.35.0", optional = true, markers = "extra == \"all\""}
mypy-boto3-lookoutvision = {version = ">=1.34.0,<1.35.0", optional = true, markers = "extra == \"all\""}
mypy-boto3-m2 = {version = ">=1.34.0,<1.35.0", optional = true, markers = "extra == \"all\""}
mypy-boto3-machinelearning = {version = ">=1.34.0,<1.35.0", optional = true, markers = "extra == \"all\""}
mypy-boto3-macie2 = {version = ">=1.34.0,<1.35.0", optional = true, markers = "extra == \"all\""}
mypy-boto3-managedblockchain = {version = ">=1.34.0,<1.35.0", optional = true, markers = "extra == \"all\""}
mypy-boto3-managedblockchain-query = {version = ">=1.34.0,<1.35.0", optional = true, markers = "extra == \"all\""}
mypy-boto3-marketplace-agreement = {version = ">=1.34.0,<1.35.0", optional = true, markers = "extra == \"all\""}
mypy-boto3-marketplace-catalog = {version = ">=1.34.0,<1.35.0", optional = true, markers = "extra == \"all\""}
mypy-boto3-marketplace-deployment = {version = ">=1.34.0,<1.35.0", optional = true, markers = "extra == \"all\""}
mypy-boto3-marketplace-entitlement = {version = ">=1.34.0,<1.35.0", optional = true, markers = "extra == \"all\""}
mypy-boto3-marketplacecommerceanalytics = {version = ">=1.34.0,<1.35.0", optional = true, markers = "extra == \"all\""}
mypy-boto3-mediaconnect = {version = ">=1.34.0,<1.35.0", optional = true, markers = "extra == \"all\""}
mypy-boto3-mediaconvert = {version = ">=1.34.0,<1.35.0", optional = true, markers = "extra == \"all\""}
mypy-boto3-medialive = {version = ">=1.34.0,<1.35.0", optional = true, markers = "extra == \"all\""}
mypy-boto3-mediapackage = {version = ">=1.34.0,<1.35.0", optional = true, markers = "extra == \"all\""}
mypy-boto3-mediapackage-vod = {version = ">=1.34.0,<1.35.0", optional = true, markers = "extra == \"all\""}
mypy-boto3-mediapackagev2 = {version = ">=1.34.0,<1.35.0", optional = true, markers = "extra == \"all\""}
mypy-boto3-mediastore = {version = ">=1.34.0,<1.35.0", optional = true, markers = "extra == \"all\""}
mypy-boto3-mediastore-data = {version = ">=1.34.0,<1.35.0", optional = true, markers = "extra == \"all\""}
mypy-boto3-mediatailor = {version = ">=1.34.0,<1.35.0", optional = true, markers = "extra == \"all\""}
mypy-boto3-medical-imaging = {version = ">=1.34.0,<1.35.0", optional = true, markers = "extra == \"all\""}
mypy-boto3-memorydb = {version = ">=1.34.0,<1.35.0", optional = true, markers = "extra == \"all\""}
mypy-boto3-meteringmarketplace = {version = ">=1.34.0,<1.35.0", optional = true, markers = "extra == \"all\""}
mypy-boto3-mgh = {version = ">=1.34.0,<1.35.0", optional = true, markers = "extra == \"all\""}
mypy-boto3-mgn = {version = ">=1.34.0,<1.35.0", optional = true, markers = "extra == \"all\""}
mypy-boto3-migration-hub-refactor-spaces = {version = ">=1.34.0,<1.35.0", optional = true, markers = "extra == \"all\""}
mypy-boto3-migrationhub-config = {version = ">=1.34.0,<1.35.0", optional = true, markers = "extra == \"all\""}
mypy-boto3-migrationhuborchestrator = {version = ">=1.34.0,<1.35.0", optional = true, markers = "extra == \"all\""}
mypy-boto3-migrationhubstrategy = {version = ">=1.34.0,<1.35.0", optional = true, markers = "extra == \"all\""}
mypy-boto3-mobile = {version = ">=1.34.0,<1.35.0", optional = true, markers = "extra == \"all\""}
mypy-boto3-mq = {version = ">=1.34.0,<1.35.0", optional = true, markers = "extra == \"all\""}
mypy-boto3-mturk = {version = ">=1.34.0,<1.35.0", optional = true, markers = "extra == \"all\""}
mypy-boto3-mwaa = {version = ">=1.34.0,<1.35.0", optional = true, markers = "extra == \"all\""}
mypy-boto3-neptune = {version = ">=1.34.0,<1.35.0", optional = true, markers = "extra == \"all\""}
mypy-boto3-neptune-graph = {version = ">=1.34.0,<1.35.0", optional = true, markers = "extra == \"all\""}
mypy-boto3-neptunedata = {version = ">=1.34.0,<1.35.0", optional = true, markers = "extra == \"all\""}
mypy-boto3-network-firewall = {version = ">=1.34.0,<1.35.0", optional = true, markers = "extra == \"all\""}
mypy-boto3-networkmanager = {version = ">=1.34.0,<1.35.0", optional = true, markers = "extra == \"all\""}
mypy-boto3-networkmonitor = {version = ">=1.34.0,<1.35.0", optional = true, markers = "extra == \"all\""}
mypy-boto3-nimble = {version = ">=1.34.0,<1.35.0", optional = true, markers = "extra == \"all\""}
mypy-boto3-oam = {version = ">=1.34.0,<1.35.0", optional = true, markers = "extra == \"all\""}
mypy-boto3-omics = {version = ">=1.34.0,<1.35.0", optional = true, markers = "extra == \"all\""}
mypy-boto3-opensearch = {version = ">=1.34.0,<1.35.0", optional = true, markers = "extra == \"all\""}
mypy-boto3-opensearchserverless = {version = ">=1.34.0,<1.35.0", optional = true, markers = "extra == \"all\""}
mypy-boto3-opsworks = {version = ">=1.34.0,<1.35.0", optional = true, markers = "extra == \"all\""}
mypy-boto3-opsworkscm = {version = ">=1.34.0,<1.35.0", optional = true, markers = "extra == \"all\""}
mypy-boto3-organizations = {version = ">=1.34.0,<1.35.0", optional = true, markers = "extra == \"all\""}
mypy-boto3-osis = {version = ">=1.34.0,<1.35.0", optional = true, markers = "extra == \"all\""}
mypy-boto3-outposts = {version = ">=1.34.0,<1.35.0", optional = true, markers = "extra == \"all\""}
mypy-boto3-panorama = {version = ">=1.34.0,<1.35.0", optional = true, markers = "extra == \"all\""}
mypy-boto3-payment-cryptography = {version = ">=1.34.0,<1.35.0", optional = true, markers = "extra == \"all\""}
mypy-boto3-payment-cryptography-data = {version = ">=1.34.0,<1.35.0", optional = true, markers = "extra == \"all\""}
mypy-boto3-pca-connector-ad = {version = ">=1.34.0,<1.35.0", optional = true, markers = "extra == \"all\""}
mypy-boto3-personalize = {version = ">=1.34.0,<1.35.0", optional = true, markers = "extra == \"all\""}
mypy-boto3-personalize-events = {version = ">=1.34.0,<1.35.0", optional = true, markers = "extra == \"all\""}
mypy-boto3-personalize-runtime = {version = ">=1.34.0,<1.35.0", optional = true, markers = "extra == \"all\""}
mypy-boto3-pi = {version = ">=1.34.0,<1.35.0", optional = true, markers = "extra == \"all\""}
mypy-boto3-pinpoint = {version = ">=1.34.0,<1.35.0", optional = true, markers = "extra == \"all\""}
mypy-boto3-pinpoint-email = {version = ">=1.34.0,<1.35.0", optional = true, markers = "extra == \"all\""}
mypy-boto3-pinpoint-sms-voice = {version = ">=1.34.0,<1.35.0", optional = true, markers = "extra == \"all\""}
mypy-boto3-pinpoint-sms-voice-v2 = {version = ">=1.34.0,<1.35.0", optional = true, markers = "extra == \"all\""}
mypy-boto3-pipes = {version = ">=1.34.0,<1.35.0", optional = true, markers = "extra == \"all\""}
mypy-boto3-polly = {version = ">=1.34.0,<1.35.0", optional = true, markers = "extra == \"all\""}
mypy-boto3-pricing = {version = ">=1.34.0,<1.35.0", optional = true, markers = "extra == \"all\""}
mypy-boto3-privatenetworks = {version = ">=1.34.0,<1.35.0", optional = true, markers = "extra == \"all\""}
mypy-boto3-proton = {version = ">=1.34.0,<1.35.0", optional = true, markers = "extra == \"all\""}
mypy-boto3-qbusiness = {version = ">=1.34.0,<1.35.0", optional = true, markers = "extra == \"all\""}
mypy-boto3-qconnect = {version = ">=1.34.0,<1.35.0", optional = true, markers = "extra == \"all\""}
mypy-boto3-qldb = {version = ">=1.34.0,<1.35.0", optional = true, markers = "extra == \"all\""}
mypy-boto3-qldb-session = {version = ">=1.34.0,<1.35.0", optional = true, markers = "extra == \"all\""}
mypy-boto3-quicksight = {version = ">=1.34.0,<1.35.0", optional = true, markers = "extra == \"all\""}
mypy-boto3-ram = {version = ">=1.34.0,<1.35.0", optional = true, markers = "extra == \"all\""}
mypy-boto3-rbin = {version = ">=1.34.0,<1.35.0", optional = true, markers = "extra == \"all\""}
mypy-boto3-rds = {version = ">=1.34.0,<1.35.0", optional = true, markers = "extra == \"all\""}
mypy-boto3-rds-data = {version = ">=1.34.0,<1.35.0", optional = true, markers = "extra == \"all\""}
mypy-boto3-redshift = {version = ">=1.34.0,<1.35.0", optional = true, markers = "extra == \"all\""}
mypy-boto3-redshift-data = {version = ">=1.34.0,<1.35.0", optional = true, markers = "extra == \"all\""}
mypy-boto3-redshift-serverless = {version = ">=1.34.0,<1.35.0", optional = true, markers = "extra == \"all\""}
mypy-boto3-rekognition = {version = ">=1.34.0,<1.35.0", optional = true, markers = "extra == \"all\""}
mypy-boto3-repostspace = {version = ">=1.34.0,<1.35.0", optional = true, markers = "extra == \"all\""}
mypy-boto3-resiliencehub = {version = ">=1.34.0,<1.35.0", optional = true, markers = "extra == \"all\""}
mypy-boto3-resource-explorer-2 = {version = ">=1.34.0,<1.35.0", optional = true, markers = "extra == \"all\""}
mypy-boto3-resource-groups = {version = ">=1.34.0,<1.35.0", optional = true, markers = "extra == \"all\""}
mypy-boto3-resourcegroupstaggingapi = {version = ">=1.34.0,<1.35.0", optional = true, markers = "extra == \"all\""}
mypy-boto3-robomaker = {version = ">=1.34.0,<1.35.0", optional = true, markers = "extra == \"all\""}
mypy-boto3-rolesanywhere = {version = ">=1.34.0,<1.35.0", optional = true, markers = "extra == \"all\""}
mypy-boto3-route53 = {version = ">=1.34.0,<1.35.0", optional = true, markers = "extra == \"all\""}
mypy-boto3-route53-recovery-cluster = {version = ">=1.34.0,<1.35.0", optional = true, markers = "extra == \"all\""}
mypy-boto3-route53-recovery-control-config = {version = ">=1.34.0,<1.35.0", optional = true, markers = "extra == \"all\""}
mypy-boto3-route53-recovery-readiness = {version = ">=1.34.0,<1.35.0", optional = true, markers = "extra == \"all\""}
mypy-boto3-route53domains = {version = ">=1.34.0,<1.35.0", optional = true, markers = "extra == \"all\""}
mypy-boto3-route53resolver = {version = ">=1.34.0,<1.35.0", optional = true, markers = "extra == \"all\""}
mypy-boto3-rum = {version = ">=1.34.0,<1.35.0", optional = true, markers = "extra == \"all\""}
mypy-boto3-s3 = {version = ">=1.34.0,<1.35.0", optional = true, markers = "extra == \"all\""}
mypy-boto3-s3control = {version = ">=1.34.0,<1.35.0", optional = true, markers = "extra == \"all\""}
mypy-boto3-s3outposts = {version = ">=1.34.0,<1.35.0", optional = true, markers = "extra == \"all\""}
mypy-boto3-sagemaker = {version = ">=1.34.0,<1.35.0", optional = true, markers = "extra == \"all\""}
mypy-boto3-sagemaker-a2i-runtime = {version = ">=1.34.0,<1.35.0", optional = true, markers = "extra == \"all\""}
mypy-boto3-sagemaker-edge = {version = ">=1.34.0,<1.35.0", optional = true, markers = "extra == \"all\""}
mypy-boto3-sagemaker-featurestore-runtime = {version = ">=1.34.0,<1.35.0", optional = true, markers = "extra == \"all\""}
mypy-boto3-sagemaker-geospatial = {version = ">=1.34.0,<1.35.0", optional = true, markers = "extra == \"all\""}
mypy-boto3-sagemaker-metrics = {version = ">=1.34.0,<1.35.0", optional = true, markers = "extra == \"all\""}
mypy-boto3-sagemaker-runtime = {version = ">=1.34.0,<1.35.0", optional = true, markers = "extra == \"all\""}
mypy-boto3-savingsplans = {version = ">=1.34.0,<1.35.0", optional = true, markers = "extra == \"all\""}
mypy-boto3-scheduler = {version = ">=1.34.0,<1.35.0", optional = true, markers = "extra == \"all\""}
mypy-boto3-schemas = {version = ">=1.34.0,<1.35.0", optional = true, markers = "extra == \"all\""}
mypy-boto3-sdb = {version = ">=1.34.0,<1.35.0", optional = true, markers = "extra == \"all\""}
mypy-boto3-secretsmanager = {version = ">=1.34.0,<1.35.0", optional = true, markers = "extra == \"all\""}
mypy-boto3-securityhub = {version = ">=1.34.0,<1.35.0", optional = true, markers = "extra == \"all\""}
mypy-boto3-securitylake = {version = ">=1.34.0,<1.35.0", optional = true, markers = "extra == \"all\""}
mypy-boto3-serverlessrepo = {version = ">=1.34.0,<1.35.0", optional = true, markers = "extra == \"all\""}
mypy-boto3-service-quotas = {version = ">=1.34.0,<1.35.0", optional = true, markers = "extra == \"all\""}
mypy-boto3-servicecatalog = {version = ">=1.34.0,<1.35.0", optional = true, markers = "extra == \"all\""}
mypy-boto3-servicecatalog-appregistry = {version = ">=1.34.0,<1.35.0", optional = true, markers = "extra == \"all\""}
mypy-boto3-servicediscovery = {version = ">=1.34.0,<1.35.0", optional = true, markers = "extra == \"all\""}
mypy-boto3-ses = {version = ">=1.34.0,<1.35.0", optional = true, markers = "extra == \"all\""}
mypy-boto3-sesv2 = {version = ">=1.34.0,<1.35.0", optional = true, markers = "extra == \"all\""}
mypy-boto3-shield = {version = ">=1.34.0,<1.35.0", optional = true, markers = "extra == \"all\""}
mypy-boto3-signer = {version = ">=1.34.0,<1.35.0", optional = true, markers = "extra == \"all\""}
mypy-boto3-simspaceweaver = {version = ">=1.34.0,<1.35.0", optional = true, markers = "extra == \"all\""}
mypy-boto3-sms = {version = ">=1.34.0,<1.35.0", optional = true, markers = "extra == \"all\""}
mypy-boto3-sms-voice = {version = ">=1.34.0,<1.35.0", optional = true, markers = "extra == \"all\""}
mypy-boto3-snow-device-management = {version = ">=1.34.0,<1.35.0", optional = true, markers = "extra == \"all\""}
mypy-boto3-snowball = {version = ">=1.34.0,<1.35.0", optional = true, markers = "extra == \"all\""}
mypy-boto3-sns = {version = ">=1.34.0,<1.35.0", optional = true, markers = "extra == \"all\""}
mypy-boto3-sqs = {version = ">=1.34.0,<1.35.0", optional = true, markers = "extra == \"all\""}
mypy-boto3-ssm = {version = ">=1.34.0,<1.35.0", optional = true, markers = "extra == \"all\""}
mypy-boto3-ssm-contacts = {version = ">=1.34.0,<1.35.0", optional = true, markers = "extra == \"all\""}
mypy-boto3-ssm-incidents = {version = ">=1.34.0,<1.35.0", optional = true, markers = "extra == \"all\""}
mypy-boto3-ssm-sap = {version = ">=1.34.0,<1.35.0", optional = true, markers = "extra == \"all\""}
mypy-boto3-sso = {version = ">=1.34.0,<1.35.0", optional = true, markers = "extra == \"all\""}
mypy-boto3-sso-admin = {version = ">=1.34.0,<1.35.0", optional = true, markers = "extra == \"all\""}
mypy-boto3-sso-oidc = {version = ">=1.34.0,<1.35.0", optional = true, markers = "extra == \"all\""}
mypy-boto3-stepfunctions = {version = ">=1.34.0,<1.35.0", optional = true, markers = "extra == \"all\""}
mypy-boto3-storagegateway = {version = ">=1.34.0,<1.35.0", optional = true, markers = "extra == \"all\""}
mypy-boto3-sts = {version = ">=1.34.0,<1.35.0", optional = true, markers = "extra == \"all\""}
mypy-boto3-support = {version = ">=1.34.0,<1.35.0", optional = true, markers = "extra == \"all\""}
mypy-boto3-support-app = {version = ">=1.34.0,<1.35.0", optional = true, markers = "extra == \"all\""}
mypy-boto3-swf = {version = ">=1.34.0,<1.35.0", optional = true, markers = "extra == \"all\""}
mypy-boto3-synthetics = {version = ">=1.34.0,<1.35.0", optional = true, markers = "extra == \"all\""}
mypy-boto3-textract = {version = ">=1.34.0,<1.35.0", optional = true, markers = "extra == \"all\""}
mypy-boto3-timestream-query = {version = ">=1.34.0,<1.35.0", optional = true, markers = "extra == \"all\""}
mypy-boto3-timestream-write = {version = ">=1.34.0,<1.35.0", optional = true, markers = "extra == \"all\""}
mypy-boto3-tnb = {version = ">=1.34.0,<1.35.0", optional = true, markers = "extra == \"all\""}
mypy-boto3-transcribe = {version = ">=1.34.0,<1.35.0", optional = true, markers = "extra == \"all\""}
mypy-boto3-transfer = {version = ">=1.34.0,<1.35.0", optional = true, markers = "extra == \"all\""}
mypy-boto3-translate = {version = ">=1.34.0,<1.35.0", optional = true, markers = "extra == \"all\""}
mypy-boto3-trustedadvisor = {version = ">=1.34.0,<1.35.0", optional = true, markers = "extra == \"all\""}
mypy-boto3-verifiedpermissions = {version = ">=1.34.0,<1.35.0", optional = true, markers = "extra == \"all\""}
mypy-boto3-voice-id = {version = ">=1.34.0,<1.35.0", optional = true, markers = "extra == \"all\""}
mypy-boto3-vpc-lattice = {version = ">=1.34.0,<1.35.0", optional = true, markers = "extra == \"all\""}
mypy-boto3-waf = {version = ">=1.34.0,<1.35.0", optional = true, markers = "extra == \"all\""}
mypy-boto3-waf-regional = {version = ">=1.34.0,<1.35.0", optional = true, markers = "extra == \"all\""}
mypy-boto3-wafv2 = {version = ">=1.34.0,<1.35.0", optional = true, markers = "extra == \"all\""}
mypy-boto3-wellarchitected = {version = ">=1.34.0,<1.35.0", optional = true, markers = "extra == \"all\""}
mypy-boto3-wisdom = {version = ">=1.34.0,<1.35.0", optional = true, markers = "extra == \"all\""}
mypy-boto3-workdocs = {version = ">=1.34.0,<1.35.0", optional = true, markers = "extra == \"all\""}
mypy-boto3-worklink = {version = ">=1.34.0,<1.35.0", optional = true, markers = "extra == \"all\""}
mypy-boto3-workmail = {version = ">=1.34.0,<1.35.0", optional = true, markers = "extra == \"all\""}
mypy-boto3-workmailmessageflow = {version = ">=1.34.0,<1.35.0", optional = true, markers = "extra == \"all\""}
mypy-boto3-workspaces = {version = ">=1.34.0,<1.35.0", optional = true, markers = "extra == \"all\""}
mypy-boto3-workspaces-thin-client = {version = ">=1.34.0,<1.35.0", optional = true, markers = "extra == \"all\""}
mypy-boto3-workspaces-web = {version = ">=1.34.0,<1.35.0", optional = true, markers = "extra == \"all\""}
mypy-boto3-xray = {version = ">=1.34.0,<1.35.0", optional = true, markers = "extra == \"all\""}
types-s3transfer = "*"
[package.extras]
accessanalyzer = ["mypy-boto3-accessanalyzer (>=1.34.0,<1.35.0)"]
account = ["mypy-boto3-account (>=1.34.0,<1.35.0)"]
acm = ["mypy-boto3-acm (>=1.34.0,<1.35.0)"]
acm-pca = ["mypy-boto3-acm-pca (>=1.34.0,<1.35.0)"]
alexaforbusiness = ["mypy-boto3-alexaforbusiness (>=1.34.0,<1.35.0)"]
all = ["mypy-boto3-accessanalyzer (>=1.34.0,<1.35.0)", "mypy-boto3-account (>=1.34.0,<1.35.0)", "mypy-boto3-acm (>=1.34.0,<1.35.0)", "mypy-boto3-acm-pca (>=1.34.0,<1.35.0)", "mypy-boto3-alexaforbusiness (>=1.34.0,<1.35.0)", "mypy-boto3-amp (>=1.34.0,<1.35.0)", "mypy-boto3-amplify (>=1.34.0,<1.35.0)", "mypy-boto3-amplifybackend (>=1.34.0,<1.35.0)", "mypy-boto3-amplifyuibuilder (>=1.34.0,<1.35.0)", "mypy-boto3-apigateway (>=1.34.0,<1.35.0)", "mypy-boto3-apigatewaymanagementapi (>=1.34.0,<1.35.0)", "mypy-boto3-apigatewayv2 (>=1.34.0,<1.35.0)", "mypy-boto3-appconfig (>=1.34.0,<1.35.0)", "mypy-boto3-appconfigdata (>=1.34.0,<1.35.0)", "mypy-boto3-appfabric (>=1.34.0,<1.35.0)", "mypy-boto3-appflow (>=1.34.0,<1.35.0)", "mypy-boto3-appintegrations (>=1.34.0,<1.35.0)", "mypy-boto3-application-autoscaling (>=1.34.0,<1.35.0)", "mypy-boto3-application-insights (>=1.34.0,<1.35.0)", "mypy-boto3-applicationcostprofiler (>=1.34.0,<1.35.0)", "mypy-boto3-appmesh (>=1.34.0,<1.35.0)", "mypy-boto3-apprunner (>=1.34.0,<1.35.0)", "mypy-boto3-appstream (>=1.34.0,<1.35.0)", "mypy-boto3-appsync (>=1.34.0,<1.35.0)", "mypy-boto3-arc-zonal-shift (>=1.34.0,<1.35.0)", "mypy-boto3-athena (>=1.34.0,<1.35.0)", "mypy-boto3-auditmanager (>=1.34.0,<1.35.0)", "mypy-boto3-autoscaling (>=1.34.0,<1.35.0)", "mypy-boto3-autoscaling-plans (>=1.34.0,<1.35.0)", "mypy-boto3-b2bi (>=1.34.0,<1.35.0)", "mypy-boto3-backup (>=1.34.0,<1.35.0)", "mypy-boto3-backup-gateway (>=1.34.0,<1.35.0)", "mypy-boto3-backupstorage (>=1.34.0,<1.35.0)", "mypy-boto3-batch (>=1.34.0,<1.35.0)", "mypy-boto3-bcm-data-exports (>=1.34.0,<1.35.0)", "mypy-boto3-bedrock (>=1.34.0,<1.35.0)", "mypy-boto3-bedrock-agent (>=1.34.0,<1.35.0)", "mypy-boto3-bedrock-agent-runtime (>=1.34.0,<1.35.0)", "mypy-boto3-bedrock-runtime (>=1.34.0,<1.35.0)", "mypy-boto3-billingconductor (>=1.34.0,<1.35.0)", "mypy-boto3-braket (>=1.34.0,<1.35.0)", "mypy-boto3-budgets (>=1.34.0,<1.35.0)", "mypy-boto3-ce (>=1.34.0,<1.35.0)", "mypy-boto3-chime (>=1.34.0,<1.35.0)", "mypy-boto3-chime-sdk-identity (>=1.34.0,<1.35.0)", "mypy-boto3-chime-sdk-media-pipelines (>=1.34.0,<1.35.0)", "mypy-boto3-chime-sdk-meetings (>=1.34.0,<1.35.0)", "mypy-boto3-chime-sdk-messaging (>=1.34.0,<1.35.0)", "mypy-boto3-chime-sdk-voice (>=1.34.0,<1.35.0)", "mypy-boto3-cleanrooms (>=1.34.0,<1.35.0)", "mypy-boto3-cleanroomsml (>=1.34.0,<1.35.0)", "mypy-boto3-cloud9 (>=1.34.0,<1.35.0)", "mypy-boto3-cloudcontrol (>=1.34.0,<1.35.0)", "mypy-boto3-clouddirectory (>=1.34.0,<1.35.0)", "mypy-boto3-cloudformation (>=1.34.0,<1.35.0)", "mypy-boto3-cloudfront (>=1.34.0,<1.35.0)", "mypy-boto3-cloudfront-keyvaluestore (>=1.34.0,<1.35.0)", "mypy-boto3-cloudhsm (>=1.34.0,<1.35.0)", "mypy-boto3-cloudhsmv2 (>=1.34.0,<1.35.0)", "mypy-boto3-cloudsearch (>=1.34.0,<1.35.0)", "mypy-boto3-cloudsearchdomain (>=1.34.0,<1.35.0)", "mypy-boto3-cloudtrail (>=1.34.0,<1.35.0)", "mypy-boto3-cloudtrail-data (>=1.34.0,<1.35.0)", "mypy-boto3-cloudwatch (>=1.34.0,<1.35.0)", "mypy-boto3-codeartifact (>=1.34.0,<1.35.0)", "mypy-boto3-codebuild (>=1.34.0,<1.35.0)", "mypy-boto3-codecatalyst (>=1.34.0,<1.35.0)", "mypy-boto3-codecommit (>=1.34.0,<1.35.0)", "mypy-boto3-codedeploy (>=1.34.0,<1.35.0)", "mypy-boto3-codeguru-reviewer (>=1.34.0,<1.35.0)", "mypy-boto3-codeguru-security (>=1.34.0,<1.35.0)", "mypy-boto3-codeguruprofiler (>=1.34.0,<1.35.0)", "mypy-boto3-codepipeline (>=1.34.0,<1.35.0)", "mypy-boto3-codestar (>=1.34.0,<1.35.0)", "mypy-boto3-codestar-connections (>=1.34.0,<1.35.0)", "mypy-boto3-codestar-notifications (>=1.34.0,<1.35.0)", "mypy-boto3-cognito-identity (>=1.34.0,<1.35.0)", "mypy-boto3-cognito-idp (>=1.34.0,<1.35.0)", "mypy-boto3-cognito-sync (>=1.34.0,<1.35.0)", "mypy-boto3-comprehend (>=1.34.0,<1.35.0)", "mypy-boto3-comprehendmedical (>=1.34.0,<1.35.0)", "mypy-boto3-compute-optimizer (>=1.34.0,<1.35.0)", "mypy-boto3-config (>=1.34.0,<1.35.0)", "mypy-boto3-connect (>=1.34.0,<1.35.0)", "mypy-boto3-connect-contact-lens (>=1.34.0,<1.35.0)", "mypy-boto3-connectcampaigns (>=1.34.0,<1.35.0)", "mypy-boto3-connectcases (>=1.34.0,<1.35.0)", "mypy-boto3-connectparticipant (>=1.34.0,<1.35.0)", "mypy-boto3-controltower (>=1.34.0,<1.35.0)", "mypy-boto3-cost-optimization-hub (>=1.34.0,<1.35.0)", "mypy-boto3-cur (>=1.34.0,<1.35.0)", "mypy-boto3-customer-profiles (>=1.34.0,<1.35.0)", "mypy-boto3-databrew (>=1.34.0,<1.35.0)", "mypy-boto3-dataexchange (>=1.34.0,<1.35.0)", "mypy-boto3-datapipeline (>=1.34.0,<1.35.0)", "mypy-boto3-datasync (>=1.34.0,<1.35.0)", "mypy-boto3-datazone (>=1.34.0,<1.35.0)", "mypy-boto3-dax (>=1.34.0,<1.35.0)", "mypy-boto3-detective (>=1.34.0,<1.35.0)", "mypy-boto3-devicefarm (>=1.34.0,<1.35.0)", "mypy-boto3-devops-guru (>=1.34.0,<1.35.0)", "mypy-boto3-directconnect (>=1.34.0,<1.35.0)", "mypy-boto3-discovery (>=1.34.0,<1.35.0)", "mypy-boto3-dlm (>=1.34.0,<1.35.0)", "mypy-boto3-dms (>=1.34.0,<1.35.0)", "mypy-boto3-docdb (>=1.34.0,<1.35.0)", "mypy-boto3-docdb-elastic (>=1.34.0,<1.35.0)", "mypy-boto3-drs (>=1.34.0,<1.35.0)", "mypy-boto3-ds (>=1.34.0,<1.35.0)", "mypy-boto3-dynamodb (>=1.34.0,<1.35.0)", "mypy-boto3-dynamodbstreams (>=1.34.0,<1.35.0)", "mypy-boto3-ebs (>=1.34.0,<1.35.0)", "mypy-boto3-ec2 (>=1.34.0,<1.35.0)", "mypy-boto3-ec2-instance-connect (>=1.34.0,<1.35.0)", "mypy-boto3-ecr (>=1.34.0,<1.35.0)", "mypy-boto3-ecr-public (>=1.34.0,<1.35.0)", "mypy-boto3-ecs (>=1.34.0,<1.35.0)", "mypy-boto3-efs (>=1.34.0,<1.35.0)", "mypy-boto3-eks (>=1.34.0,<1.35.0)", "mypy-boto3-eks-auth (>=1.34.0,<1.35.0)", "mypy-boto3-elastic-inference (>=1.34.0,<1.35.0)", "mypy-boto3-elasticache (>=1.34.0,<1.35.0)", "mypy-boto3-elasticbeanstalk (>=1.34.0,<1.35.0)", "mypy-boto3-elastictranscoder (>=1.34.0,<1.35.0)", "mypy-boto3-elb (>=1.34.0,<1.35.0)", "mypy-boto3-elbv2 (>=1.34.0,<1.35.0)", "mypy-boto3-emr (>=1.34.0,<1.35.0)", "mypy-boto3-emr-containers (>=1.34.0,<1.35.0)", "mypy-boto3-emr-serverless (>=1.34.0,<1.35.0)", "mypy-boto3-entityresolution (>=1.34.0,<1.35.0)", "mypy-boto3-es (>=1.34.0,<1.35.0)", "mypy-boto3-events (>=1.34.0,<1.35.0)", "mypy-boto3-evidently (>=1.34.0,<1.35.0)", "mypy-boto3-finspace (>=1.34.0,<1.35.0)", "mypy-boto3-finspace-data (>=1.34.0,<1.35.0)", "mypy-boto3-firehose (>=1.34.0,<1.35.0)", "mypy-boto3-fis (>=1.34.0,<1.35.0)", "mypy-boto3-fms (>=1.34.0,<1.35.0)", "mypy-boto3-forecast (>=1.34.0,<1.35.0)", "mypy-boto3-forecastquery (>=1.34.0,<1.35.0)", "mypy-boto3-frauddetector (>=1.34.0,<1.35.0)", "mypy-boto3-freetier (>=1.34.0,<1.35.0)", "mypy-boto3-fsx (>=1.34.0,<1.35.0)", "mypy-boto3-gamelift (>=1.34.0,<1.35.0)", "mypy-boto3-glacier (>=1.34.0,<1.35.0)", "mypy-boto3-globalaccelerator (>=1.34.0,<1.35.0)", "mypy-boto3-glue (>=1.34.0,<1.35.0)", "mypy-boto3-grafana (>=1.34.0,<1.35.0)", "mypy-boto3-greengrass (>=1.34.0,<1.35.0)", "mypy-boto3-greengrassv2 (>=1.34.0,<1.35.0)", "mypy-boto3-groundstation (>=1.34.0,<1.35.0)", "mypy-boto3-guardduty (>=1.34.0,<1.35.0)", "mypy-boto3-health (>=1.34.0,<1.35.0)", "mypy-boto3-healthlake (>=1.34.0,<1.35.0)", "mypy-boto3-honeycode (>=1.34.0,<1.35.0)", "mypy-boto3-iam (>=1.34.0,<1.35.0)", "mypy-boto3-identitystore (>=1.34.0,<1.35.0)", "mypy-boto3-imagebuilder (>=1.34.0,<1.35.0)", "mypy-boto3-importexport (>=1.34.0,<1.35.0)", "mypy-boto3-inspector (>=1.34.0,<1.35.0)", "mypy-boto3-inspector-scan (>=1.34.0,<1.35.0)", "mypy-boto3-inspector2 (>=1.34.0,<1.35.0)", "mypy-boto3-internetmonitor (>=1.34.0,<1.35.0)", "mypy-boto3-iot (>=1.34.0,<1.35.0)", "mypy-boto3-iot-data (>=1.34.0,<1.35.0)", "mypy-boto3-iot-jobs-data (>=1.34.0,<1.35.0)", "mypy-boto3-iot-roborunner (>=1.34.0,<1.35.0)", "mypy-boto3-iot1click-devices (>=1.34.0,<1.35.0)", "mypy-boto3-iot1click-projects (>=1.34.0,<1.35.0)", "mypy-boto3-iotanalytics (>=1.34.0,<1.35.0)", "mypy-boto3-iotdeviceadvisor (>=1.34.0,<1.35.0)", "mypy-boto3-iotevents (>=1.34.0,<1.35.0)", "mypy-boto3-iotevents-data (>=1.34.0,<1.35.0)", "mypy-boto3-iotfleethub (>=1.34.0,<1.35.0)", "mypy-boto3-iotfleetwise (>=1.34.0,<1.35.0)", "mypy-boto3-iotsecuretunneling (>=1.34.0,<1.35.0)", "mypy-boto3-iotsitewise (>=1.34.0,<1.35.0)", "mypy-boto3-iotthingsgraph (>=1.34.0,<1.35.0)", "mypy-boto3-iottwinmaker (>=1.34.0,<1.35.0)", "mypy-boto3-iotwireless (>=1.34.0,<1.35.0)", "mypy-boto3-ivs (>=1.34.0,<1.35.0)", "mypy-boto3-ivs-realtime (>=1.34.0,<1.35.0)", "mypy-boto3-ivschat (>=1.34.0,<1.35.0)", "mypy-boto3-kafka (>=1.34.0,<1.35.0)", "mypy-boto3-kafkaconnect (>=1.34.0,<1.35.0)", "mypy-boto3-kendra (>=1.34.0,<1.35.0)", "mypy-boto3-kendra-ranking (>=1.34.0,<1.35.0)", "mypy-boto3-keyspaces (>=1.34.0,<1.35.0)", "mypy-boto3-kinesis (>=1.34.0,<1.35.0)", "mypy-boto3-kinesis-video-archived-media (>=1.34.0,<1.35.0)", "mypy-boto3-kinesis-video-media (>=1.34.0,<1.35.0)", "mypy-boto3-kinesis-video-signaling (>=1.34.0,<1.35.0)", "mypy-boto3-kinesis-video-webrtc-storage (>=1.34.0,<1.35.0)", "mypy-boto3-kinesisanalytics (>=1.34.0,<1.35.0)", "mypy-boto3-kinesisanalyticsv2 (>=1.34.0,<1.35.0)", "mypy-boto3-kinesisvideo (>=1.34.0,<1.35.0)", "mypy-boto3-kms (>=1.34.0,<1.35.0)", "mypy-boto3-lakeformation (>=1.34.0,<1.35.0)", "mypy-boto3-lambda (>=1.34.0,<1.35.0)", "mypy-boto3-launch-wizard (>=1.34.0,<1.35.0)", "mypy-boto3-lex-models (>=1.34.0,<1.35.0)", "mypy-boto3-lex-runtime (>=1.34.0,<1.35.0)", "mypy-boto3-lexv2-models (>=1.34.0,<1.35.0)", "mypy-boto3-lexv2-runtime (>=1.34.0,<1.35.0)", "mypy-boto3-license-manager (>=1.34.0,<1.35.0)", "mypy-boto3-license-manager-linux-subscriptions (>=1.34.0,<1.35.0)", "mypy-boto3-license-manager-user-subscriptions (>=1.34.0,<1.35.0)", "mypy-boto3-lightsail (>=1.34.0,<1.35.0)", "mypy-boto3-location (>=1.34.0,<1.35.0)", "mypy-boto3-logs (>=1.34.0,<1.35.0)", "mypy-boto3-lookoutequipment (>=1.34.0,<1.35.0)", "mypy-boto3-lookoutmetrics (>=1.34.0,<1.35.0)", "mypy-boto3-lookoutvision (>=1.34.0,<1.35.0)", "mypy-boto3-m2 (>=1.34.0,<1.35.0)", "mypy-boto3-machinelearning (>=1.34.0,<1.35.0)", "mypy-boto3-macie2 (>=1.34.0,<1.35.0)", "mypy-boto3-managedblockchain (>=1.34.0,<1.35.0)", "mypy-boto3-managedblockchain-query (>=1.34.0,<1.35.0)", "mypy-boto3-marketplace-agreement (>=1.34.0,<1.35.0)", "mypy-boto3-marketplace-catalog (>=1.34.0,<1.35.0)", "mypy-boto3-marketplace-deployment (>=1.34.0,<1.35.0)", "mypy-boto3-marketplace-entitlement (>=1.34.0,<1.35.0)", "mypy-boto3-marketplacecommerceanalytics (>=1.34.0,<1.35.0)", "mypy-boto3-mediaconnect (>=1.34.0,<1.35.0)", "mypy-boto3-mediaconvert (>=1.34.0,<1.35.0)", "mypy-boto3-medialive (>=1.34.0,<1.35.0)", "mypy-boto3-mediapackage (>=1.34.0,<1.35.0)", "mypy-boto3-mediapackage-vod (>=1.34.0,<1.35.0)", "mypy-boto3-mediapackagev2 (>=1.34.0,<1.35.0)", "mypy-boto3-mediastore (>=1.34.0,<1.35.0)", "mypy-boto3-mediastore-data (>=1.34.0,<1.35.0)", "mypy-boto3-mediatailor (>=1.34.0,<1.35.0)", "mypy-boto3-medical-imaging (>=1.34.0,<1.35.0)", "mypy-boto3-memorydb (>=1.34.0,<1.35.0)", "mypy-boto3-meteringmarketplace (>=1.34.0,<1.35.0)", "mypy-boto3-mgh (>=1.34.0,<1.35.0)", "mypy-boto3-mgn (>=1.34.0,<1.35.0)", "mypy-boto3-migration-hub-refactor-spaces (>=1.34.0,<1.35.0)", "mypy-boto3-migrationhub-config (>=1.34.0,<1.35.0)", "mypy-boto3-migrationhuborchestrator (>=1.34.0,<1.35.0)", "mypy-boto3-migrationhubstrategy (>=1.34.0,<1.35.0)", "mypy-boto3-mobile (>=1.34.0,<1.35.0)", "mypy-boto3-mq (>=1.34.0,<1.35.0)", "mypy-boto3-mturk (>=1.34.0,<1.35.0)", "mypy-boto3-mwaa (>=1.34.0,<1.35.0)", "mypy-boto3-neptune (>=1.34.0,<1.35.0)", "mypy-boto3-neptune-graph (>=1.34.0,<1.35.0)", "mypy-boto3-neptunedata (>=1.34.0,<1.35.0)", "mypy-boto3-network-firewall (>=1.34.0,<1.35.0)", "mypy-boto3-networkmanager (>=1.34.0,<1.35.0)", "mypy-boto3-networkmonitor (>=1.34.0,<1.35.0)", "mypy-boto3-nimble (>=1.34.0,<1.35.0)", "mypy-boto3-oam (>=1.34.0,<1.35.0)", "mypy-boto3-omics (>=1.34.0,<1.35.0)", "mypy-boto3-opensearch (>=1.34.0,<1.35.0)", "mypy-boto3-opensearchserverless (>=1.34.0,<1.35.0)", "mypy-boto3-opsworks (>=1.34.0,<1.35.0)", "mypy-boto3-opsworkscm (>=1.34.0,<1.35.0)", "mypy-boto3-organizations (>=1.34.0,<1.35.0)", "mypy-boto3-osis (>=1.34.0,<1.35.0)", "mypy-boto3-outposts (>=1.34.0,<1.35.0)", "mypy-boto3-panorama (>=1.34.0,<1.35.0)", "mypy-boto3-payment-cryptography (>=1.34.0,<1.35.0)", "mypy-boto3-payment-cryptography-data (>=1.34.0,<1.35.0)", "mypy-boto3-pca-connector-ad (>=1.34.0,<1.35.0)", "mypy-boto3-personalize (>=1.34.0,<1.35.0)", "mypy-boto3-personalize-events (>=1.34.0,<1.35.0)", "mypy-boto3-personalize-runtime (>=1.34.0,<1.35.0)", "mypy-boto3-pi (>=1.34.0,<1.35.0)", "mypy-boto3-pinpoint (>=1.34.0,<1.35.0)", "mypy-boto3-pinpoint-email (>=1.34.0,<1.35.0)", "mypy-boto3-pinpoint-sms-voice (>=1.34.0,<1.35.0)", "mypy-boto3-pinpoint-sms-voice-v2 (>=1.34.0,<1.35.0)", "mypy-boto3-pipes (>=1.34.0,<1.35.0)", "mypy-boto3-polly (>=1.34.0,<1.35.0)", "mypy-boto3-pricing (>=1.34.0,<1.35.0)", "mypy-boto3-privatenetworks (>=1.34.0,<1.35.0)", "mypy-boto3-proton (>=1.34.0,<1.35.0)", "mypy-boto3-qbusiness (>=1.34.0,<1.35.0)", "mypy-boto3-qconnect (>=1.34.0,<1.35.0)", "mypy-boto3-qldb (>=1.34.0,<1.35.0)", "mypy-boto3-qldb-session (>=1.34.0,<1.35.0)", "mypy-boto3-quicksight (>=1.34.0,<1.35.0)", "mypy-boto3-ram (>=1.34.0,<1.35.0)", "mypy-boto3-rbin (>=1.34.0,<1.35.0)", "mypy-boto3-rds (>=1.34.0,<1.35.0)", "mypy-boto3-rds-data (>=1.34.0,<1.35.0)", "mypy-boto3-redshift (>=1.34.0,<1.35.0)", "mypy-boto3-redshift-data (>=1.34.0,<1.35.0)", "mypy-boto3-redshift-serverless (>=1.34.0,<1.35.0)", "mypy-boto3-rekognition (>=1.34.0,<1.35.0)", "mypy-boto3-repostspace (>=1.34.0,<1.35.0)", "mypy-boto3-resiliencehub (>=1.34.0,<1.35.0)", "mypy-boto3-resource-explorer-2 (>=1.34.0,<1.35.0)", "mypy-boto3-resource-groups (>=1.34.0,<1.35.0)", "mypy-boto3-resourcegroupstaggingapi (>=1.34.0,<1.35.0)", "mypy-boto3-robomaker (>=1.34.0,<1.35.0)", "mypy-boto3-rolesanywhere (>=1.34.0,<1.35.0)", "mypy-boto3-route53 (>=1.34.0,<1.35.0)", "mypy-boto3-route53-recovery-cluster (>=1.34.0,<1.35.0)", "mypy-boto3-route53-recovery-control-config (>=1.34.0,<1.35.0)", "mypy-boto3-route53-recovery-readiness (>=1.34.0,<1.35.0)", "mypy-boto3-route53domains (>=1.34.0,<1.35.0)", "mypy-boto3-route53resolver (>=1.34.0,<1.35.0)", "mypy-boto3-rum (>=1.34.0,<1.35.0)", "mypy-boto3-s3 (>=1.34.0,<1.35.0)", "mypy-boto3-s3control (>=1.34.0,<1.35.0)", "mypy-boto3-s3outposts (>=1.34.0,<1.35.0)", "mypy-boto3-sagemaker (>=1.34.0,<1.35.0)", "mypy-boto3-sagemaker-a2i-runtime (>=1.34.0,<1.35.0)", "mypy-boto3-sagemaker-edge (>=1.34.0,<1.35.0)", "mypy-boto3-sagemaker-featurestore-runtime (>=1.34.0,<1.35.0)", "mypy-boto3-sagemaker-geospatial (>=1.34.0,<1.35.0)", "mypy-boto3-sagemaker-metrics (>=1.34.0,<1.35.0)", "mypy-boto3-sagemaker-runtime (>=1.34.0,<1.35.0)", "mypy-boto3-savingsplans (>=1.34.0,<1.35.0)", "mypy-boto3-scheduler (>=1.34.0,<1.35.0)", "mypy-boto3-schemas (>=1.34.0,<1.35.0)", "mypy-boto3-sdb (>=1.34.0,<1.35.0)", "mypy-boto3-secretsmanager (>=1.34.0,<1.35.0)", "mypy-boto3-securityhub (>=1.34.0,<1.35.0)", "mypy-boto3-securitylake (>=1.34.0,<1.35.0)", "mypy-boto3-serverlessrepo (>=1.34.0,<1.35.0)", "mypy-boto3-service-quotas (>=1.34.0,<1.35.0)", "mypy-boto3-servicecatalog (>=1.34.0,<1.35.0)", "mypy-boto3-servicecatalog-appregistry (>=1.34.0,<1.35.0)", "mypy-boto3-servicediscovery (>=1.34.0,<1.35.0)", "mypy-boto3-ses (>=1.34.0,<1.35.0)", "mypy-boto3-sesv2 (>=1.34.0,<1.35.0)", "mypy-boto3-shield (>=1.34.0,<1.35.0)", "mypy-boto3-signer (>=1.34.0,<1.35.0)", "mypy-boto3-simspaceweaver (>=1.34.0,<1.35.0)", "mypy-boto3-sms (>=1.34.0,<1.35.0)", "mypy-boto3-sms-voice (>=1.34.0,<1.35.0)", "mypy-boto3-snow-device-management (>=1.34.0,<1.35.0)", "mypy-boto3-snowball (>=1.34.0,<1.35.0)", "mypy-boto3-sns (>=1.34.0,<1.35.0)", "mypy-boto3-sqs (>=1.34.0,<1.35.0)", "mypy-boto3-ssm (>=1.34.0,<1.35.0)", "mypy-boto3-ssm-contacts (>=1.34.0,<1.35.0)", "mypy-boto3-ssm-incidents (>=1.34.0,<1.35.0)", "mypy-boto3-ssm-sap (>=1.34.0,<1.35.0)", "mypy-boto3-sso (>=1.34.0,<1.35.0)", "mypy-boto3-sso-admin (>=1.34.0,<1.35.0)", "mypy-boto3-sso-oidc (>=1.34.0,<1.35.0)", "mypy-boto3-stepfunctions (>=1.34.0,<1.35.0)", "mypy-boto3-storagegateway (>=1.34.0,<1.35.0)", "mypy-boto3-sts (>=1.34.0,<1.35.0)", "mypy-boto3-support (>=1.34.0,<1.35.0)", "mypy-boto3-support-app (>=1.34.0,<1.35.0)", "mypy-boto3-swf (>=1.34.0,<1.35.0)", "mypy-boto3-synthetics (>=1.34.0,<1.35.0)", "mypy-boto3-textract (>=1.34.0,<1.35.0)", "mypy-boto3-timestream-query (>=1.34.0,<1.35.0)", "mypy-boto3-timestream-write (>=1.34.0,<1.35.0)", "mypy-boto3-tnb (>=1.34.0,<1.35.0)", "mypy-boto3-transcribe (>=1.34.0,<1.35.0)", "mypy-boto3-transfer (>=1.34.0,<1.35.0)", "mypy-boto3-translate (>=1.34.0,<1.35.0)", "mypy-boto3-trustedadvisor (>=1.34.0,<1.35.0)", "mypy-boto3-verifiedpermissions (>=1.34.0,<1.35.0)", "mypy-boto3-voice-id (>=1.34.0,<1.35.0)", "mypy-boto3-vpc-lattice (>=1.34.0,<1.35.0)", "mypy-boto3-waf (>=1.34.0,<1.35.0)", "mypy-boto3-waf-regional (>=1.34.0,<1.35.0)", "mypy-boto3-wafv2 (>=1.34.0,<1.35.0)", "mypy-boto3-wellarchitected (>=1.34.0,<1.35.0)", "mypy-boto3-wisdom (>=1.34.0,<1.35.0)", "mypy-boto3-workdocs (>=1.34.0,<1.35.0)", "mypy-boto3-worklink (>=1.34.0,<1.35.0)", "mypy-boto3-workmail (>=1.34.0,<1.35.0)", "mypy-boto3-workmailmessageflow (>=1.34.0,<1.35.0)", "mypy-boto3-workspaces (>=1.34.0,<1.35.0)", "mypy-boto3-workspaces-thin-client (>=1.34.0,<1.35.0)", "mypy-boto3-workspaces-web (>=1.34.0,<1.35.0)", "mypy-boto3-xray (>=1.34.0,<1.35.0)"]
amp = ["mypy-boto3-amp (>=1.34.0,<1.35.0)"]
amplify = ["mypy-boto3-amplify (>=1.34.0,<1.35.0)"]
amplifybackend = ["mypy-boto3-amplifybackend (>=1.34.0,<1.35.0)"]
amplifyuibuilder = ["mypy-boto3-amplifyuibuilder (>=1.34.0,<1.35.0)"]
apigateway = ["mypy-boto3-apigateway (>=1.34.0,<1.35.0)"]
apigatewaymanagementapi = ["mypy-boto3-apigatewaymanagementapi (>=1.34.0,<1.35.0)"]
apigatewayv2 = ["mypy-boto3-apigatewayv2 (>=1.34.0,<1.35.0)"]
appconfig = ["mypy-boto3-appconfig (>=1.34.0,<1.35.0)"]
appconfigdata = ["mypy-boto3-appconfigdata (>=1.34.0,<1.35.0)"]
appfabric = ["mypy-boto3-appfabric (>=1.34.0,<1.35.0)"]
appflow = ["mypy-boto3-appflow (>=1.34.0,<1.35.0)"]
appintegrations = ["mypy-boto3-appintegrations (>=1.34.0,<1.35.0)"]
application-autoscaling = ["mypy-boto3-application-autoscaling (>=1.34.0,<1.35.0)"]
application-insights = ["mypy-boto3-application-insights (>=1.34.0,<1.35.0)"]
applicationcostprofiler = ["mypy-boto3-applicationcostprofiler (>=1.34.0,<1.35.0)"]
appmesh = ["mypy-boto3-appmesh (>=1.34.0,<1.35.0)"]
apprunner = ["mypy-boto3-apprunner (>=1.34.0,<1.35.0)"]
appstream = ["mypy-boto3-appstream (>=1.34.0,<1.35.0)"]
appsync = ["mypy-boto3-appsync (>=1.34.0,<1.35.0)"]
arc-zonal-shift = ["mypy-boto3-arc-zonal-shift (>=1.34.0,<1.35.0)"]
athena = ["mypy-boto3-athena (>=1.34.0,<1.35.0)"]
auditmanager = ["mypy-boto3-auditmanager (>=1.34.0,<1.35.0)"]
autoscaling = ["mypy-boto3-autoscaling (>=1.34.0,<1.35.0)"]
autoscaling-plans = ["mypy-boto3-autoscaling-plans (>=1.34.0,<1.35.0)"]
b2bi = ["mypy-boto3-b2bi (>=1.34.0,<1.35.0)"]
backup = ["mypy-boto3-backup (>=1.34.0,<1.35.0)"]
backup-gateway = ["mypy-boto3-backup-gateway (>=1.34.0,<1.35.0)"]
backupstorage = ["mypy-boto3-backupstorage (>=1.34.0,<1.35.0)"]
batch = ["mypy-boto3-batch (>=1.34.0,<1.35.0)"]
bcm-data-exports = ["mypy-boto3-bcm-data-exports (>=1.34.0,<1.35.0)"]
bedrock = ["mypy-boto3-bedrock (>=1.34.0,<1.35.0)"]
bedrock-agent = ["mypy-boto3-bedrock-agent (>=1.34.0,<1.35.0)"]
bedrock-agent-runtime = ["mypy-boto3-bedrock-agent-runtime (>=1.34.0,<1.35.0)"]
bedrock-runtime = ["mypy-boto3-bedrock-runtime (>=1.34.0,<1.35.0)"]
billingconductor = ["mypy-boto3-billingconductor (>=1.34.0,<1.35.0)"]
boto3 = ["boto3 (==1.34.9)", "botocore (==1.34.9)"]
braket = ["mypy-boto3-braket (>=1.34.0,<1.35.0)"]
budgets = ["mypy-boto3-budgets (>=1.34.0,<1.35.0)"]
ce = ["mypy-boto3-ce (>=1.34.0,<1.35.0)"]
chime = ["mypy-boto3-chime (>=1.34.0,<1.35.0)"]
chime-sdk-identity = ["mypy-boto3-chime-sdk-identity (>=1.34.0,<1.35.0)"]
chime-sdk-media-pipelines = ["mypy-boto3-chime-sdk-media-pipelines (>=1.34.0,<1.35.0)"]
chime-sdk-meetings = ["mypy-boto3-chime-sdk-meetings (>=1.34.0,<1.35.0)"]
chime-sdk-messaging = ["mypy-boto3-chime-sdk-messaging (>=1.34.0,<1.35.0)"]
chime-sdk-voice = ["mypy-boto3-chime-sdk-voice (>=1.34.0,<1.35.0)"]
cleanrooms = ["mypy-boto3-cleanrooms (>=1.34.0,<1.35.0)"]
cleanroomsml = ["mypy-boto3-cleanroomsml (>=1.34.0,<1.35.0)"]
cloud9 = ["mypy-boto3-cloud9 (>=1.34.0,<1.35.0)"]
cloudcontrol = ["mypy-boto3-cloudcontrol (>=1.34.0,<1.35.0)"]
clouddirectory = ["mypy-boto3-clouddirectory (>=1.34.0,<1.35.0)"]
cloudformation = ["mypy-boto3-cloudformation (>=1.34.0,<1.35.0)"]
cloudfront = ["mypy-boto3-cloudfront (>=1.34.0,<1.35.0)"]
cloudfront-keyvaluestore = ["mypy-boto3-cloudfront-keyvaluestore (>=1.34.0,<1.35.0)"]
cloudhsm = ["mypy-boto3-cloudhsm (>=1.34.0,<1.35.0)"]
cloudhsmv2 = ["mypy-boto3-cloudhsmv2 (>=1.34.0,<1.35.0)"]
cloudsearch = ["mypy-boto3-cloudsearch (>=1.34.0,<1.35.0)"]
cloudsearchdomain = ["mypy-boto3-cloudsearchdomain (>=1.34.0,<1.35.0)"]
cloudtrail = ["mypy-boto3-cloudtrail (>=1.34.0,<1.35.0)"]
cloudtrail-data = ["mypy-boto3-cloudtrail-data (>=1.34.0,<1.35.0)"]
cloudwatch = ["mypy-boto3-cloudwatch (>=1.34.0,<1.35.0)"]
codeartifact = ["mypy-boto3-codeartifact (>=1.34.0,<1.35.0)"]
codebuild = ["mypy-boto3-codebuild (>=1.34.0,<1.35.0)"]
codecatalyst = ["mypy-boto3-codecatalyst (>=1.34.0,<1.35.0)"]
codecommit = ["mypy-boto3-codecommit (>=1.34.0,<1.35.0)"]
codedeploy = ["mypy-boto3-codedeploy (>=1.34.0,<1.35.0)"]
codeguru-reviewer = ["mypy-boto3-codeguru-reviewer (>=1.34.0,<1.35.0)"]
codeguru-security = ["mypy-boto3-codeguru-security (>=1.34.0,<1.35.0)"]
codeguruprofiler = ["mypy-boto3-codeguruprofiler (>=1.34.0,<1.35.0)"]
codepipeline = ["mypy-boto3-codepipeline (>=1.34.0,<1.35.0)"]
codestar = ["mypy-boto3-codestar (>=1.34.0,<1.35.0)"]
codestar-connections = ["mypy-boto3-codestar-connections (>=1.34.0,<1.35.0)"]
codestar-notifications = ["mypy-boto3-codestar-notifications (>=1.34.0,<1.35.0)"]
cognito-identity = ["mypy-boto3-cognito-identity (>=1.34.0,<1.35.0)"]
cognito-idp = ["mypy-boto3-cognito-idp (>=1.34.0,<1.35.0)"]
cognito-sync = ["mypy-boto3-cognito-sync (>=1.34.0,<1.35.0)"]
comprehend = ["mypy-boto3-comprehend (>=1.34.0,<1.35.0)"]
comprehendmedical = ["mypy-boto3-comprehendmedical (>=1.34.0,<1.35.0)"]
compute-optimizer = ["mypy-boto3-compute-optimizer (>=1.34.0,<1.35.0)"]
config = ["mypy-boto3-config (>=1.34.0,<1.35.0)"]
connect = ["mypy-boto3-connect (>=1.34.0,<1.35.0)"]
connect-contact-lens = ["mypy-boto3-connect-contact-lens (>=1.34.0,<1.35.0)"]
connectcampaigns = ["mypy-boto3-connectcampaigns (>=1.34.0,<1.35.0)"]
connectcases = ["mypy-boto3-connectcases (>=1.34.0,<1.35.0)"]
connectparticipant = ["mypy-boto3-connectparticipant (>=1.34.0,<1.35.0)"]
controltower = ["mypy-boto3-controltower (>=1.34.0,<1.35.0)"]
cost-optimization-hub = ["mypy-boto3-cost-optimization-hub (>=1.34.0,<1.35.0)"]
cur = ["mypy-boto3-cur (>=1.34.0,<1.35.0)"]
customer-profiles = ["mypy-boto3-customer-profiles (>=1.34.0,<1.35.0)"]
databrew = ["mypy-boto3-databrew (>=1.34.0,<1.35.0)"]
dataexchange = ["mypy-boto3-dataexchange (>=1.34.0,<1.35.0)"]
datapipeline = ["mypy-boto3-datapipeline (>=1.34.0,<1.35.0)"]
datasync = ["mypy-boto3-datasync (>=1.34.0,<1.35.0)"]
datazone = ["mypy-boto3-datazone (>=1.34.0,<1.35.0)"]
dax = ["mypy-boto3-dax (>=1.34.0,<1.35.0)"]
detective = ["mypy-boto3-detective (>=1.34.0,<1.35.0)"]
devicefarm = ["mypy-boto3-devicefarm (>=1.34.0,<1.35.0)"]
devops-guru = ["mypy-boto3-devops-guru (>=1.34.0,<1.35.0)"]
directconnect = ["mypy-boto3-directconnect (>=1.34.0,<1.35.0)"]
discovery = ["mypy-boto3-discovery (>=1.34.0,<1.35.0)"]
dlm = ["mypy-boto3-dlm (>=1.34.0,<1.35.0)"]
dms = ["mypy-boto3-dms (>=1.34.0,<1.35.0)"]
docdb = ["mypy-boto3-docdb (>=1.34.0,<1.35.0)"]
docdb-elastic = ["mypy-boto3-docdb-elastic (>=1.34.0,<1.35.0)"]
drs = ["mypy-boto3-drs (>=1.34.0,<1.35.0)"]
ds = ["mypy-boto3-ds (>=1.34.0,<1.35.0)"]
dynamodb = ["mypy-boto3-dynamodb (>=1.34.0,<1.35.0)"]
dynamodbstreams = ["mypy-boto3-dynamodbstreams (>=1.34.0,<1.35.0)"]
ebs = ["mypy-boto3-ebs (>=1.34.0,<1.35.0)"]
ec2 = ["mypy-boto3-ec2 (>=1.34.0,<1.35.0)"]
ec2-instance-connect = ["mypy-boto3-ec2-instance-connect (>=1.34.0,<1.35.0)"]
ecr = ["mypy-boto3-ecr (>=1.34.0,<1.35.0)"]
ecr-public = ["mypy-boto3-ecr-public (>=1.34.0,<1.35.0)"]
ecs = ["mypy-boto3-ecs (>=1.34.0,<1.35.0)"]
efs = ["mypy-boto3-efs (>=1.34.0,<1.35.0)"]
eks = ["mypy-boto3-eks (>=1.34.0,<1.35.0)"]
eks-auth = ["mypy-boto3-eks-auth (>=1.34.0,<1.35.0)"]
elastic-inference = ["mypy-boto3-elastic-inference (>=1.34.0,<1.35.0)"]
elasticache = ["mypy-boto3-elasticache (>=1.34.0,<1.35.0)"]
elasticbeanstalk = ["mypy-boto3-elasticbeanstalk (>=1.34.0,<1.35.0)"]
elastictranscoder = ["mypy-boto3-elastictranscoder (>=1.34.0,<1.35.0)"]
elb = ["mypy-boto3-elb (>=1.34.0,<1.35.0)"]
elbv2 = ["mypy-boto3-elbv2 (>=1.34.0,<1.35.0)"]
emr = ["mypy-boto3-emr (>=1.34.0,<1.35.0)"]
emr-containers = ["mypy-boto3-emr-containers (>=1.34.0,<1.35.0)"]
emr-serverless = ["mypy-boto3-emr-serverless (>=1.34.0,<1.35.0)"]
entityresolution = ["mypy-boto3-entityresolution (>=1.34.0,<1.35.0)"]
es = ["mypy-boto3-es (>=1.34.0,<1.35.0)"]
essential = ["mypy-boto3-cloudformation (>=1.34.0,<1.35.0)", "mypy-boto3-dynamodb (>=1.34.0,<1.35.0)", "mypy-boto3-ec2 (>=1.34.0,<1.35.0)", "mypy-boto3-lambda (>=1.34.0,<1.35.0)", "mypy-boto3-rds (>=1.34.0,<1.35.0)", "mypy-boto3-s3 (>=1.34.0,<1.35.0)", "mypy-boto3-sqs (>=1.34.0,<1.35.0)"]
events = ["mypy-boto3-events (>=1.34.0,<1.35.0)"]
evidently = ["mypy-boto3-evidently (>=1.34.0,<1.35.0)"]
finspace = ["mypy-boto3-finspace (>=1.34.0,<1.35.0)"]
finspace-data = ["mypy-boto3-finspace-data (>=1.34.0,<1.35.0)"]
firehose = ["mypy-boto3-firehose (>=1.34.0,<1.35.0)"]
fis = ["mypy-boto3-fis (>=1.34.0,<1.35.0)"]
fms = ["mypy-boto3-fms (>=1.34.0,<1.35.0)"]
forecast = ["mypy-boto3-forecast (>=1.34.0,<1.35.0)"]
forecastquery = ["mypy-boto3-forecastquery (>=1.34.0,<1.35.0)"]
frauddetector = ["mypy-boto3-frauddetector (>=1.34.0,<1.35.0)"]
freetier = ["mypy-boto3-freetier (>=1.34.0,<1.35.0)"]
fsx = ["mypy-boto3-fsx (>=1.34.0,<1.35.0)"]
gamelift = ["mypy-boto3-gamelift (>=1.34.0,<1.35.0)"]
glacier = ["mypy-boto3-glacier (>=1.34.0,<1.35.0)"]
globalaccelerator = ["mypy-boto3-globalaccelerator (>=1.34.0,<1.35.0)"]
glue = ["mypy-boto3-glue (>=1.34.0,<1.35.0)"]
grafana = ["mypy-boto3-grafana (>=1.34.0,<1.35.0)"]
greengrass = ["mypy-boto3-greengrass (>=1.34.0,<1.35.0)"]
greengrassv2 = ["mypy-boto3-greengrassv2 (>=1.34.0,<1.35.0)"]
groundstation = ["mypy-boto3-groundstation (>=1.34.0,<1.35.0)"]
guardduty = ["mypy-boto3-guardduty (>=1.34.0,<1.35.0)"]
health = ["mypy-boto3-health (>=1.34.0,<1.35.0)"]
healthlake = ["mypy-boto3-healthlake (>=1.34.0,<1.35.0)"]
honeycode = ["mypy-boto3-honeycode (>=1.34.0,<1.35.0)"]
iam = ["mypy-boto3-iam (>=1.34.0,<1.35.0)"]
identitystore = ["mypy-boto3-identitystore (>=1.34.0,<1.35.0)"]
imagebuilder = ["mypy-boto3-imagebuilder (>=1.34.0,<1.35.0)"]
importexport = ["mypy-boto3-importexport (>=1.34.0,<1.35.0)"]
inspector = ["mypy-boto3-inspector (>=1.34.0,<1.35.0)"]
inspector-scan = ["mypy-boto3-inspector-scan (>=1.34.0,<1.35.0)"]
inspector2 = ["mypy-boto3-inspector2 (>=1.34.0,<1.35.0)"]
internetmonitor = ["mypy-boto3-internetmonitor (>=1.34.0,<1.35.0)"]
iot = ["mypy-boto3-iot (>=1.34.0,<1.35.0)"]
iot-data = ["mypy-boto3-iot-data (>=1.34.0,<1.35.0)"]
iot-jobs-data = ["mypy-boto3-iot-jobs-data (>=1.34.0,<1.35.0)"]
iot-roborunner = ["mypy-boto3-iot-roborunner (>=1.34.0,<1.35.0)"]
iot1click-devices = ["mypy-boto3-iot1click-devices (>=1.34.0,<1.35.0)"]
iot1click-projects = ["mypy-boto3-iot1click-projects (>=1.34.0,<1.35.0)"]
iotanalytics = ["mypy-boto3-iotanalytics (>=1.34.0,<1.35.0)"]
iotdeviceadvisor = ["mypy-boto3-iotdeviceadvisor (>=1.34.0,<1.35.0)"]
iotevents = ["mypy-boto3-iotevents (>=1.34.0,<1.35.0)"]
iotevents-data = ["mypy-boto3-iotevents-data (>=1.34.0,<1.35.0)"]
iotfleethub = ["mypy-boto3-iotfleethub (>=1.34.0,<1.35.0)"]
iotfleetwise = ["mypy-boto3-iotfleetwise (>=1.34.0,<1.35.0)"]
iotsecuretunneling = ["mypy-boto3-iotsecuretunneling (>=1.34.0,<1.35.0)"]
iotsitewise = ["mypy-boto3-iotsitewise (>=1.34.0,<1.35.0)"]
iotthingsgraph = ["mypy-boto3-iotthingsgraph (>=1.34.0,<1.35.0)"]
iottwinmaker = ["mypy-boto3-iottwinmaker (>=1.34.0,<1.35.0)"]
iotwireless = ["mypy-boto3-iotwireless (>=1.34.0,<1.35.0)"]
ivs = ["mypy-boto3-ivs (>=1.34.0,<1.35.0)"]
ivs-realtime = ["mypy-boto3-ivs-realtime (>=1.34.0,<1.35.0)"]
ivschat = ["mypy-boto3-ivschat (>=1.34.0,<1.35.0)"]
kafka = ["mypy-boto3-kafka (>=1.34.0,<1.35.0)"]
kafkaconnect = ["mypy-boto3-kafkaconnect (>=1.34.0,<1.35.0)"]
kendra = ["mypy-boto3-kendra (>=1.34.0,<1.35.0)"]
kendra-ranking = ["mypy-boto3-kendra-ranking (>=1.34.0,<1.35.0)"]
keyspaces = ["mypy-boto3-keyspaces (>=1.34.0,<1.35.0)"]
kinesis = ["mypy-boto3-kinesis (>=1.34.0,<1.35.0)"]
kinesis-video-archived-media = ["mypy-boto3-kinesis-video-archived-media (>=1.34.0,<1.35.0)"]
kinesis-video-media = ["mypy-boto3-kinesis-video-media (>=1.34.0,<1.35.0)"]
kinesis-video-signaling = ["mypy-boto3-kinesis-video-signaling (>=1.34.0,<1.35.0)"]
kinesis-video-webrtc-storage = ["mypy-boto3-kinesis-video-webrtc-storage (>=1.34.0,<1.35.0)"]
kinesisanalytics = ["mypy-boto3-kinesisanalytics (>=1.34.0,<1.35.0)"]
kinesisanalyticsv2 = ["mypy-boto3-kinesisanalyticsv2 (>=1.34.0,<1.35.0)"]
kinesisvideo = ["mypy-boto3-kinesisvideo (>=1.34.0,<1.35.0)"]
kms = ["mypy-boto3-kms (>=1.34.0,<1.35.0)"]
lakeformation = ["mypy-boto3-lakeformation (>=1.34.0,<1.35.0)"]
lambda = ["mypy-boto3-lambda (>=1.34.0,<1.35.0)"]
launch-wizard = ["mypy-boto3-launch-wizard (>=1.34.0,<1.35.0)"]
lex-models = ["mypy-boto3-lex-models (>=1.34.0,<1.35.0)"]
lex-runtime = ["mypy-boto3-lex-runtime (>=1.34.0,<1.35.0)"]
lexv2-models = ["mypy-boto3-lexv2-models (>=1.34.0,<1.35.0)"]
lexv2-runtime = ["mypy-boto3-lexv2-runtime (>=1.34.0,<1.35.0)"]
license-manager = ["mypy-boto3-license-manager (>=1.34.0,<1.35.0)"]
license-manager-linux-subscriptions = ["mypy-boto3-license-manager-linux-subscriptions (>=1.34.0,<1.35.0)"]
license-manager-user-subscriptions = ["mypy-boto3-license-manager-user-subscriptions (>=1.34.0,<1.35.0)"]
lightsail = ["mypy-boto3-lightsail (>=1.34.0,<1.35.0)"]
location = ["mypy-boto3-location (>=1.34.0,<1.35.0)"]
logs = ["mypy-boto3-logs (>=1.34.0,<1.35.0)"]
lookoutequipment = ["mypy-boto3-lookoutequipment (>=1.34.0,<1.35.0)"]
lookoutmetrics = ["mypy-boto3-lookoutmetrics (>=1.34.0,<1.35.0)"]
lookoutvision = ["mypy-boto3-lookoutvision (>=1.34.0,<1.35.0)"]
m2 = ["mypy-boto3-m2 (>=1.34.0,<1.35.0)"]
machinelearning = ["mypy-boto3-machinelearning (>=1.34.0,<1.35.0)"]
macie2 = ["mypy-boto3-macie2 (>=1.34.0,<1.35.0)"]
managedblockchain = ["mypy-boto3-managedblockchain (>=1.34.0,<1.35.0)"]
managedblockchain-query = ["mypy-boto3-managedblockchain-query (>=1.34.0,<1.35.0)"]
marketplace-agreement = ["mypy-boto3-marketplace-agreement (>=1.34.0,<1.35.0)"]
marketplace-catalog = ["mypy-boto3-marketplace-catalog (>=1.34.0,<1.35.0)"]
marketplace-deployment = ["mypy-boto3-marketplace-deployment (>=1.34.0,<1.35.0)"]
marketplace-entitlement = ["mypy-boto3-marketplace-entitlement (>=1.34.0,<1.35.0)"]
marketplacecommerceanalytics = ["mypy-boto3-marketplacecommerceanalytics (>=1.34.0,<1.35.0)"]
mediaconnect = ["mypy-boto3-mediaconnect (>=1.34.0,<1.35.0)"]
mediaconvert = ["mypy-boto3-mediaconvert (>=1.34.0,<1.35.0)"]
medialive = ["mypy-boto3-medialive (>=1.34.0,<1.35.0)"]
mediapackage = ["mypy-boto3-mediapackage (>=1.34.0,<1.35.0)"]
mediapackage-vod = ["mypy-boto3-mediapackage-vod (>=1.34.0,<1.35.0)"]
mediapackagev2 = ["mypy-boto3-mediapackagev2 (>=1.34.0,<1.35.0)"]
mediastore = ["mypy-boto3-mediastore (>=1.34.0,<1.35.0)"]
mediastore-data = ["mypy-boto3-mediastore-data (>=1.34.0,<1.35.0)"]
mediatailor = ["mypy-boto3-mediatailor (>=1.34.0,<1.35.0)"]
medical-imaging = ["mypy-boto3-medical-imaging (>=1.34.0,<1.35.0)"]
memorydb = ["mypy-boto3-memorydb (>=1.34.0,<1.35.0)"]
meteringmarketplace = ["mypy-boto3-meteringmarketplace (>=1.34.0,<1.35.0)"]
mgh = ["mypy-boto3-mgh (>=1.34.0,<1.35.0)"]
mgn = ["mypy-boto3-mgn (>=1.34.0,<1.35.0)"]
migration-hub-refactor-spaces = ["mypy-boto3-migration-hub-refactor-spaces (>=1.34.0,<1.35.0)"]
migrationhub-config = ["mypy-boto3-migrationhub-config (>=1.34.0,<1.35.0)"]
migrationhuborchestrator = ["mypy-boto3-migrationhuborchestrator (>=1.34.0,<1.35.0)"]
migrationhubstrategy = ["mypy-boto3-migrationhubstrategy (>=1.34.0,<1.35.0)"]
mobile = ["mypy-boto3-mobile (>=1.34.0,<1.35.0)"]
mq = ["mypy-boto3-mq (>=1.34.0,<1.35.0)"]
mturk = ["mypy-boto3-mturk (>=1.34.0,<1.35.0)"]
mwaa = ["mypy-boto3-mwaa (>=1.34.0,<1.35.0)"]
neptune = ["mypy-boto3-neptune (>=1.34.0,<1.35.0)"]
neptune-graph = ["mypy-boto3-neptune-graph (>=1.34.0,<1.35.0)"]
neptunedata = ["mypy-boto3-neptunedata (>=1.34.0,<1.35.0)"]
network-firewall = ["mypy-boto3-network-firewall (>=1.34.0,<1.35.0)"]
networkmanager = ["mypy-boto3-networkmanager (>=1.34.0,<1.35.0)"]
networkmonitor = ["mypy-boto3-networkmonitor (>=1.34.0,<1.35.0)"]
nimble = ["mypy-boto3-nimble (>=1.34.0,<1.35.0)"]
oam = ["mypy-boto3-oam (>=1.34.0,<1.35.0)"]
omics = ["mypy-boto3-omics (>=1.34.0,<1.35.0)"]
opensearch = ["mypy-boto3-opensearch (>=1.34.0,<1.35.0)"]
opensearchserverless = ["mypy-boto3-opensearchserverless (>=1.34.0,<1.35.0)"]
opsworks = ["mypy-boto3-opsworks (>=1.34.0,<1.35.0)"]
opsworkscm = ["mypy-boto3-opsworkscm (>=1.34.0,<1.35.0)"]
organizations = ["mypy-boto3-organizations (>=1.34.0,<1.35.0)"]
osis = ["mypy-boto3-osis (>=1.34.0,<1.35.0)"]
outposts = ["mypy-boto3-outposts (>=1.34.0,<1.35.0)"]
panorama = ["mypy-boto3-panorama (>=1.34.0,<1.35.0)"]
payment-cryptography = ["mypy-boto3-payment-cryptography (>=1.34.0,<1.35.0)"]
payment-cryptography-data = ["mypy-boto3-payment-cryptography-data (>=1.34.0,<1.35.0)"]
pca-connector-ad = ["mypy-boto3-pca-connector-ad (>=1.34.0,<1.35.0)"]
personalize = ["mypy-boto3-personalize (>=1.34.0,<1.35.0)"]
personalize-events = ["mypy-boto3-personalize-events (>=1.34.0,<1.35.0)"]
personalize-runtime = ["mypy-boto3-personalize-runtime (>=1.34.0,<1.35.0)"]
pi = ["mypy-boto3-pi (>=1.34.0,<1.35.0)"]
pinpoint = ["mypy-boto3-pinpoint (>=1.34.0,<1.35.0)"]
pinpoint-email = ["mypy-boto3-pinpoint-email (>=1.34.0,<1.35.0)"]
pinpoint-sms-voice = ["mypy-boto3-pinpoint-sms-voice (>=1.34.0,<1.35.0)"]
pinpoint-sms-voice-v2 = ["mypy-boto3-pinpoint-sms-voice-v2 (>=1.34.0,<1.35.0)"]
pipes = ["mypy-boto3-pipes (>=1.34.0,<1.35.0)"]
polly = ["mypy-boto3-polly (>=1.34.0,<1.35.0)"]
pricing = ["mypy-boto3-pricing (>=1.34.0,<1.35.0)"]
privatenetworks = ["mypy-boto3-privatenetworks (>=1.34.0,<1.35.0)"]
proton = ["mypy-boto3-proton (>=1.34.0,<1.35.0)"]
qbusiness = ["mypy-boto3-qbusiness (>=1.34.0,<1.35.0)"]
qconnect = ["mypy-boto3-qconnect (>=1.34.0,<1.35.0)"]
qldb = ["mypy-boto3-qldb (>=1.34.0,<1.35.0)"]
qldb-session = ["mypy-boto3-qldb-session (>=1.34.0,<1.35.0)"]
quicksight = ["mypy-boto3-quicksight (>=1.34.0,<1.35.0)"]
ram = ["mypy-boto3-ram (>=1.34.0,<1.35.0)"]
rbin = ["mypy-boto3-rbin (>=1.34.0,<1.35.0)"]
rds = ["mypy-boto3-rds (>=1.34.0,<1.35.0)"]
rds-data = ["mypy-boto3-rds-data (>=1.34.0,<1.35.0)"]
redshift = ["mypy-boto3-redshift (>=1.34.0,<1.35.0)"]
redshift-data = ["mypy-boto3-redshift-data (>=1.34.0,<1.35.0)"]
redshift-serverless = ["mypy-boto3-redshift-serverless (>=1.34.0,<1.35.0)"]
rekognition = ["mypy-boto3-rekognition (>=1.34.0,<1.35.0)"]
repostspace = ["mypy-boto3-repostspace (>=1.34.0,<1.35.0)"]
resiliencehub = ["mypy-boto3-resiliencehub (>=1.34.0,<1.35.0)"]
resource-explorer-2 = ["mypy-boto3-resource-explorer-2 (>=1.34.0,<1.35.0)"]
resource-groups = ["mypy-boto3-resource-groups (>=1.34.0,<1.35.0)"]
resourcegroupstaggingapi = ["mypy-boto3-resourcegroupstaggingapi (>=1.34.0,<1.35.0)"]
robomaker = ["mypy-boto3-robomaker (>=1.34.0,<1.35.0)"]
rolesanywhere = ["mypy-boto3-rolesanywhere (>=1.34.0,<1.35.0)"]
route53 = ["mypy-boto3-route53 (>=1.34.0,<1.35.0)"]
route53-recovery-cluster = ["mypy-boto3-route53-recovery-cluster (>=1.34.0,<1.35.0)"]
route53-recovery-control-config = ["mypy-boto3-route53-recovery-control-config (>=1.34.0,<1.35.0)"]
route53-recovery-readiness = ["mypy-boto3-route53-recovery-readiness (>=1.34.0,<1.35.0)"]
route53domains = ["mypy-boto3-route53domains (>=1.34.0,<1.35.0)"]
route53resolver = ["mypy-boto3-route53resolver (>=1.34.0,<1.35.0)"]
rum = ["mypy-boto3-rum (>=1.34.0,<1.35.0)"]
s3 = ["mypy-boto3-s3 (>=1.34.0,<1.35.0)"]
s3control = ["mypy-boto3-s3control (>=1.34.0,<1.35.0)"]
s3outposts = ["mypy-boto3-s3outposts (>=1.34.0,<1.35.0)"]
sagemaker = ["mypy-boto3-sagemaker (>=1.34.0,<1.35.0)"]
sagemaker-a2i-runtime = ["mypy-boto3-sagemaker-a2i-runtime (>=1.34.0,<1.35.0)"]
sagemaker-edge = ["mypy-boto3-sagemaker-edge (>=1.34.0,<1.35.0)"]
sagemaker-featurestore-runtime = ["mypy-boto3-sagemaker-featurestore-runtime (>=1.34.0,<1.35.0)"]
sagemaker-geospatial = ["mypy-boto3-sagemaker-geospatial (>=1.34.0,<1.35.0)"]
sagemaker-metrics = ["mypy-boto3-sagemaker-metrics (>=1.34.0,<1.35.0)"]
sagemaker-runtime = ["mypy-boto3-sagemaker-runtime (>=1.34.0,<1.35.0)"]
savingsplans = ["mypy-boto3-savingsplans (>=1.34.0,<1.35.0)"]
scheduler = ["mypy-boto3-scheduler (>=1.34.0,<1.35.0)"]
schemas = ["mypy-boto3-schemas (>=1.34.0,<1.35.0)"]
sdb = ["mypy-boto3-sdb (>=1.34.0,<1.35.0)"]
secretsmanager = ["mypy-boto3-secretsmanager (>=1.34.0,<1.35.0)"]
securityhub = ["mypy-boto3-securityhub (>=1.34.0,<1.35.0)"]
securitylake = ["mypy-boto3-securitylake (>=1.34.0,<1.35.0)"]
serverlessrepo = ["mypy-boto3-serverlessrepo (>=1.34.0,<1.35.0)"]
service-quotas = ["mypy-boto3-service-quotas (>=1.34.0,<1.35.0)"]
servicecatalog = ["mypy-boto3-servicecatalog (>=1.34.0,<1.35.0)"]
servicecatalog-appregistry = ["mypy-boto3-servicecatalog-appregistry (>=1.34.0,<1.35.0)"]
servicediscovery = ["mypy-boto3-servicediscovery (>=1.34.0,<1.35.0)"]
ses = ["mypy-boto3-ses (>=1.34.0,<1.35.0)"]
sesv2 = ["mypy-boto3-sesv2 (>=1.34.0,<1.35.0)"]
shield = ["mypy-boto3-shield (>=1.34.0,<1.35.0)"]
signer = ["mypy-boto3-signer (>=1.34.0,<1.35.0)"]
simspaceweaver = ["mypy-boto3-simspaceweaver (>=1.34.0,<1.35.0)"]
sms = ["mypy-boto3-sms (>=1.34.0,<1.35.0)"]
sms-voice = ["mypy-boto3-sms-voice (>=1.34.0,<1.35.0)"]
snow-device-management = ["mypy-boto3-snow-device-management (>=1.34.0,<1.35.0)"]
snowball = ["mypy-boto3-snowball (>=1.34.0,<1.35.0)"]
sns = ["mypy-boto3-sns (>=1.34.0,<1.35.0)"]
sqs = ["mypy-boto3-sqs (>=1.34.0,<1.35.0)"]
ssm = ["mypy-boto3-ssm (>=1.34.0,<1.35.0)"]
ssm-contacts = ["mypy-boto3-ssm-contacts (>=1.34.0,<1.35.0)"]
ssm-incidents = ["mypy-boto3-ssm-incidents (>=1.34.0,<1.35.0)"]
ssm-sap = ["mypy-boto3-ssm-sap (>=1.34.0,<1.35.0)"]
sso = ["mypy-boto3-sso (>=1.34.0,<1.35.0)"]
sso-admin = ["mypy-boto3-sso-admin (>=1.34.0,<1.35.0)"]
sso-oidc = ["mypy-boto3-sso-oidc (>=1.34.0,<1.35.0)"]
stepfunctions = ["mypy-boto3-stepfunctions (>=1.34.0,<1.35.0)"]
storagegateway = ["mypy-boto3-storagegateway (>=1.34.0,<1.35.0)"]
sts = ["mypy-boto3-sts (>=1.34.0,<1.35.0)"]
support = ["mypy-boto3-support (>=1.34.0,<1.35.0)"]
support-app = ["mypy-boto3-support-app (>=1.34.0,<1.35.0)"]
swf = ["mypy-boto3-swf (>=1.34.0,<1.35.0)"]
synthetics = ["mypy-boto3-synthetics (>=1.34.0,<1.35.0)"]
textract = ["mypy-boto3-textract (>=1.34.0,<1.35.0)"]
timestream-query = ["mypy-boto3-timestream-query (>=1.34.0,<1.35.0)"]
timestream-write = ["mypy-boto3-timestream-write (>=1.34.0,<1.35.0)"]
tnb = ["mypy-boto3-tnb (>=1.34.0,<1.35.0)"]
transcribe = ["mypy-boto3-transcribe (>=1.34.0,<1.35.0)"]
transfer = ["mypy-boto3-transfer (>=1.34.0,<1.35.0)"]
translate = ["mypy-boto3-translate (>=1.34.0,<1.35.0)"]
trustedadvisor = ["mypy-boto3-trustedadvisor (>=1.34.0,<1.35.0)"]
verifiedpermissions = ["mypy-boto3-verifiedpermissions (>=1.34.0,<1.35.0)"]
voice-id = ["mypy-boto3-voice-id (>=1.34.0,<1.35.0)"]
vpc-lattice = ["mypy-boto3-vpc-lattice (>=1.34.0,<1.35.0)"]
waf = ["mypy-boto3-waf (>=1.34.0,<1.35.0)"]
waf-regional = ["mypy-boto3-waf-regional (>=1.34.0,<1.35.0)"]
wafv2 = ["mypy-boto3-wafv2 (>=1.34.0,<1.35.0)"]
wellarchitected = ["mypy-boto3-wellarchitected (>=1.34.0,<1.35.0)"]
wisdom = ["mypy-boto3-wisdom (>=1.34.0,<1.35.0)"]
workdocs = ["mypy-boto3-workdocs (>=1.34.0,<1.35.0)"]
worklink = ["mypy-boto3-worklink (>=1.34.0,<1.35.0)"]
workmail = ["mypy-boto3-workmail (>=1.34.0,<1.35.0)"]
workmailmessageflow = ["mypy-boto3-workmailmessageflow (>=1.34.0,<1.35.0)"]
workspaces = ["mypy-boto3-workspaces (>=1.34.0,<1.35.0)"]
workspaces-thin-client = ["mypy-boto3-workspaces-thin-client (>=1.34.0,<1.35.0)"]
workspaces-web = ["mypy-boto3-workspaces-web (>=1.34.0,<1.35.0)"]
xray = ["mypy-boto3-xray (>=1.34.0,<1.35.0)"]
[[package]]
name = "botocore"
version = "1.34.9"
description = "Low-level, data-driven core of boto 3."
category = "main"
optional = false
python-versions = ">= 3.8"
files = [
{file = "botocore-1.34.9-py3-none-any.whl", hash = "sha256:b40f027f371a1bd211ef67a3727c74bc3713af5fc5d830d4587abda296ebb19e"},
{file = "botocore-1.34.9.tar.gz", hash = "sha256:2cf43fa5b5438a95fc466c700f3098228b45df38e311103488554b2334b42ee3"},
]
[package.dependencies]
jmespath = ">=0.7.1,<2.0.0"
python-dateutil = ">=2.1,<3.0.0"
urllib3 = {version = ">=1.25.4,<2.1", markers = "python_version >= \"3.10\""}
[package.extras]
crt = ["awscrt (==0.19.19)"]
[[package]]
name = "botocore-stubs"
version = "1.34.7"
description = "Type annotations and code completion for botocore"
category = "dev"
optional = false
python-versions = ">=3.8,<4.0"
files = [
{file = "botocore_stubs-1.34.7-py3-none-any.whl", hash = "sha256:733ce0836a1bc655bd674f0c8c957f775294a5fdaf31cb4b9d7eef047648c71e"},
{file = "botocore_stubs-1.34.7.tar.gz", hash = "sha256:88f6e9dc5d19799f4a5813bf69331ece8f337bacf388b3b9615fa57c05ed243b"},
]
[package.dependencies]
types-awscrt = "*"
[package.extras]
botocore = ["botocore"]
[[package]]
name = "certifi"
version = "2023.11.17"
description = "Python package for providing Mozilla's CA Bundle."
category = "dev"
optional = false
python-versions = ">=3.6"
files = [
{file = "certifi-2023.11.17-py3-none-any.whl", hash = "sha256:e036ab49d5b79556f99cfc2d9320b34cfbe5be05c5871b51de9329f0603b0474"},
{file = "certifi-2023.11.17.tar.gz", hash = "sha256:9b469f3a900bf28dc19b8cfbf8019bf47f7fdd1a65a1d4ffb98fc14166beb4d1"},
]
[[package]]
name = "cffi"
version = "1.16.0"
description = "Foreign Function Interface for Python calling C code."
category = "dev"
optional = false
python-versions = ">=3.8"
files = [
{file = "cffi-1.16.0-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:6b3d6606d369fc1da4fd8c357d026317fbb9c9b75d36dc16e90e84c26854b088"},
{file = "cffi-1.16.0-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:ac0f5edd2360eea2f1daa9e26a41db02dd4b0451b48f7c318e217ee092a213e9"},
{file = "cffi-1.16.0-cp310-cp310-manylinux_2_12_i686.manylinux2010_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:7e61e3e4fa664a8588aa25c883eab612a188c725755afff6289454d6362b9673"},
{file = "cffi-1.16.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:a72e8961a86d19bdb45851d8f1f08b041ea37d2bd8d4fd19903bc3083d80c896"},
{file = "cffi-1.16.0-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:5b50bf3f55561dac5438f8e70bfcdfd74543fd60df5fa5f62d94e5867deca684"},
{file = "cffi-1.16.0-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:7651c50c8c5ef7bdb41108b7b8c5a83013bfaa8a935590c5d74627c047a583c7"},
{file = "cffi-1.16.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:e4108df7fe9b707191e55f33efbcb2d81928e10cea45527879a4749cbe472614"},
{file = "cffi-1.16.0-cp310-cp310-musllinux_1_1_i686.whl", hash = "sha256:32c68ef735dbe5857c810328cb2481e24722a59a2003018885514d4c09af9743"},
{file = "cffi-1.16.0-cp310-cp310-musllinux_1_1_x86_64.whl", hash = "sha256:673739cb539f8cdaa07d92d02efa93c9ccf87e345b9a0b556e3ecc666718468d"},
{file = "cffi-1.16.0-cp310-cp310-win32.whl", hash = "sha256:9f90389693731ff1f659e55c7d1640e2ec43ff725cc61b04b2f9c6d8d017df6a"},
{file = "cffi-1.16.0-cp310-cp310-win_amd64.whl", hash = "sha256:e6024675e67af929088fda399b2094574609396b1decb609c55fa58b028a32a1"},
{file = "cffi-1.16.0-cp311-cp311-macosx_10_9_x86_64.whl", hash = "sha256:b84834d0cf97e7d27dd5b7f3aca7b6e9263c56308ab9dc8aae9784abb774d404"},
{file = "cffi-1.16.0-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:1b8ebc27c014c59692bb2664c7d13ce7a6e9a629be20e54e7271fa696ff2b417"},
{file = "cffi-1.16.0-cp311-cp311-manylinux_2_12_i686.manylinux2010_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:ee07e47c12890ef248766a6e55bd38ebfb2bb8edd4142d56db91b21ea68b7627"},
{file = "cffi-1.16.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:d8a9d3ebe49f084ad71f9269834ceccbf398253c9fac910c4fd7053ff1386936"},
{file = "cffi-1.16.0-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:e70f54f1796669ef691ca07d046cd81a29cb4deb1e5f942003f401c0c4a2695d"},
{file = "cffi-1.16.0-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:5bf44d66cdf9e893637896c7faa22298baebcd18d1ddb6d2626a6e39793a1d56"},
{file = "cffi-1.16.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:7b78010e7b97fef4bee1e896df8a4bbb6712b7f05b7ef630f9d1da00f6444d2e"},
{file = "cffi-1.16.0-cp311-cp311-musllinux_1_1_i686.whl", hash = "sha256:c6a164aa47843fb1b01e941d385aab7215563bb8816d80ff3a363a9f8448a8dc"},
{file = "cffi-1.16.0-cp311-cp311-musllinux_1_1_x86_64.whl", hash = "sha256:e09f3ff613345df5e8c3667da1d918f9149bd623cd9070c983c013792a9a62eb"},
{file = "cffi-1.16.0-cp311-cp311-win32.whl", hash = "sha256:2c56b361916f390cd758a57f2e16233eb4f64bcbeee88a4881ea90fca14dc6ab"},
{file = "cffi-1.16.0-cp311-cp311-win_amd64.whl", hash = "sha256:db8e577c19c0fda0beb7e0d4e09e0ba74b1e4c092e0e40bfa12fe05b6f6d75ba"},
{file = "cffi-1.16.0-cp312-cp312-macosx_10_9_x86_64.whl", hash = "sha256:fa3a0128b152627161ce47201262d3140edb5a5c3da88d73a1b790a959126956"},
{file = "cffi-1.16.0-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:68e7c44931cc171c54ccb702482e9fc723192e88d25a0e133edd7aff8fcd1f6e"},
{file = "cffi-1.16.0-cp312-cp312-manylinux_2_12_i686.manylinux2010_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:abd808f9c129ba2beda4cfc53bde801e5bcf9d6e0f22f095e45327c038bfe68e"},
{file = "cffi-1.16.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:88e2b3c14bdb32e440be531ade29d3c50a1a59cd4e51b1dd8b0865c54ea5d2e2"},
{file = "cffi-1.16.0-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:fcc8eb6d5902bb1cf6dc4f187ee3ea80a1eba0a89aba40a5cb20a5087d961357"},
{file = "cffi-1.16.0-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:b7be2d771cdba2942e13215c4e340bfd76398e9227ad10402a8767ab1865d2e6"},
{file = "cffi-1.16.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:e715596e683d2ce000574bae5d07bd522c781a822866c20495e52520564f0969"},
{file = "cffi-1.16.0-cp312-cp312-musllinux_1_1_x86_64.whl", hash = "sha256:2d92b25dbf6cae33f65005baf472d2c245c050b1ce709cc4588cdcdd5495b520"},
{file = "cffi-1.16.0-cp312-cp312-win32.whl", hash = "sha256:b2ca4e77f9f47c55c194982e10f058db063937845bb2b7a86c84a6cfe0aefa8b"},
{file = "cffi-1.16.0-cp312-cp312-win_amd64.whl", hash = "sha256:68678abf380b42ce21a5f2abde8efee05c114c2fdb2e9eef2efdb0257fba1235"},
{file = "cffi-1.16.0-cp38-cp38-macosx_10_9_x86_64.whl", hash = "sha256:0c9ef6ff37e974b73c25eecc13952c55bceed9112be2d9d938ded8e856138bcc"},
{file = "cffi-1.16.0-cp38-cp38-manylinux_2_12_i686.manylinux2010_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:a09582f178759ee8128d9270cd1344154fd473bb77d94ce0aeb2a93ebf0feaf0"},
{file = "cffi-1.16.0-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:e760191dd42581e023a68b758769e2da259b5d52e3103c6060ddc02c9edb8d7b"},
{file = "cffi-1.16.0-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:80876338e19c951fdfed6198e70bc88f1c9758b94578d5a7c4c91a87af3cf31c"},
{file = "cffi-1.16.0-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:a6a14b17d7e17fa0d207ac08642c8820f84f25ce17a442fd15e27ea18d67c59b"},
{file = "cffi-1.16.0-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:6602bc8dc6f3a9e02b6c22c4fc1e47aa50f8f8e6d3f78a5e16ac33ef5fefa324"},
{file = "cffi-1.16.0-cp38-cp38-win32.whl", hash = "sha256:131fd094d1065b19540c3d72594260f118b231090295d8c34e19a7bbcf2e860a"},
{file = "cffi-1.16.0-cp38-cp38-win_amd64.whl", hash = "sha256:31d13b0f99e0836b7ff893d37af07366ebc90b678b6664c955b54561fc36ef36"},
{file = "cffi-1.16.0-cp39-cp39-macosx_10_9_x86_64.whl", hash = "sha256:582215a0e9adbe0e379761260553ba11c58943e4bbe9c36430c4ca6ac74b15ed"},
{file = "cffi-1.16.0-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:b29ebffcf550f9da55bec9e02ad430c992a87e5f512cd63388abb76f1036d8d2"},
{file = "cffi-1.16.0-cp39-cp39-manylinux_2_12_i686.manylinux2010_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:dc9b18bf40cc75f66f40a7379f6a9513244fe33c0e8aa72e2d56b0196a7ef872"},
{file = "cffi-1.16.0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:9cb4a35b3642fc5c005a6755a5d17c6c8b6bcb6981baf81cea8bfbc8903e8ba8"},
{file = "cffi-1.16.0-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:b86851a328eedc692acf81fb05444bdf1891747c25af7529e39ddafaf68a4f3f"},
{file = "cffi-1.16.0-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:c0f31130ebc2d37cdd8e44605fb5fa7ad59049298b3f745c74fa74c62fbfcfc4"},
{file = "cffi-1.16.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:8f8e709127c6c77446a8c0a8c8bf3c8ee706a06cd44b1e827c3e6a2ee6b8c098"},
{file = "cffi-1.16.0-cp39-cp39-musllinux_1_1_i686.whl", hash = "sha256:748dcd1e3d3d7cd5443ef03ce8685043294ad6bd7c02a38d1bd367cfd968e000"},
{file = "cffi-1.16.0-cp39-cp39-musllinux_1_1_x86_64.whl", hash = "sha256:8895613bcc094d4a1b2dbe179d88d7fb4a15cee43c052e8885783fac397d91fe"},
{file = "cffi-1.16.0-cp39-cp39-win32.whl", hash = "sha256:ed86a35631f7bfbb28e108dd96773b9d5a6ce4811cf6ea468bb6a359b256b1e4"},
{file = "cffi-1.16.0-cp39-cp39-win_amd64.whl", hash = "sha256:3686dffb02459559c74dd3d81748269ffb0eb027c39a6fc99502de37d501faa8"},
{file = "cffi-1.16.0.tar.gz", hash = "sha256:bcb3ef43e58665bbda2fb198698fcae6776483e0c4a631aa5647806c25e02cc0"},
]
[package.dependencies]
pycparser = "*"
[[package]]
name = "charset-normalizer"