types-boto3-kinesis 1.38.0__py3-none-any.whl → 1.40.0__py3-none-any.whl
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- types_boto3_kinesis/__main__.py +4 -4
- types_boto3_kinesis/client.py +34 -0
- types_boto3_kinesis/client.pyi +34 -0
- types_boto3_kinesis/literals.py +11 -2
- types_boto3_kinesis/literals.pyi +11 -2
- types_boto3_kinesis/type_defs.py +29 -5
- types_boto3_kinesis/type_defs.pyi +24 -4
- types_boto3_kinesis/version.py +1 -1
- {types_boto3_kinesis-1.38.0.dist-info → types_boto3_kinesis-1.40.0.dist-info}/METADATA +5 -5
- types_boto3_kinesis-1.40.0.dist-info/RECORD +20 -0
- {types_boto3_kinesis-1.38.0.dist-info → types_boto3_kinesis-1.40.0.dist-info}/WHEEL +1 -1
- types_boto3_kinesis-1.38.0.dist-info/RECORD +0 -20
- {types_boto3_kinesis-1.38.0.dist-info → types_boto3_kinesis-1.40.0.dist-info}/licenses/LICENSE +0 -0
- {types_boto3_kinesis-1.38.0.dist-info → types_boto3_kinesis-1.40.0.dist-info}/top_level.txt +0 -0
types_boto3_kinesis/__main__.py
CHANGED
|
@@ -12,9 +12,9 @@ def print_info() -> None:
|
|
|
12
12
|
Print package info to stdout.
|
|
13
13
|
"""
|
|
14
14
|
sys.stdout.write(
|
|
15
|
-
"Type annotations for boto3 Kinesis 1.
|
|
16
|
-
"Version: 1.
|
|
17
|
-
"Builder version: 8.
|
|
15
|
+
"Type annotations for boto3 Kinesis 1.40.0\n"
|
|
16
|
+
"Version: 1.40.0\n"
|
|
17
|
+
"Builder version: 8.11.0\n"
|
|
18
18
|
"Docs: https://youtype.github.io/types_boto3_docs/types_boto3_kinesis//\n"
|
|
19
19
|
"Boto3 docs: https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/kinesis.html#kinesis\n"
|
|
20
20
|
"Other services: https://pypi.org/project/boto3-stubs/\n"
|
|
@@ -26,7 +26,7 @@ def print_version() -> None:
|
|
|
26
26
|
"""
|
|
27
27
|
Print package version to stdout.
|
|
28
28
|
"""
|
|
29
|
-
sys.stdout.write("1.
|
|
29
|
+
sys.stdout.write("1.40.0\n")
|
|
30
30
|
|
|
31
31
|
|
|
32
32
|
def main() -> None:
|
types_boto3_kinesis/client.py
CHANGED
|
@@ -62,6 +62,8 @@ from .type_defs import (
|
|
|
62
62
|
ListStreamConsumersOutputTypeDef,
|
|
63
63
|
ListStreamsInputTypeDef,
|
|
64
64
|
ListStreamsOutputTypeDef,
|
|
65
|
+
ListTagsForResourceInputTypeDef,
|
|
66
|
+
ListTagsForResourceOutputTypeDef,
|
|
65
67
|
ListTagsForStreamInputTypeDef,
|
|
66
68
|
ListTagsForStreamOutputTypeDef,
|
|
67
69
|
MergeShardsInputTypeDef,
|
|
@@ -78,6 +80,8 @@ from .type_defs import (
|
|
|
78
80
|
StopStreamEncryptionInputTypeDef,
|
|
79
81
|
SubscribeToShardInputTypeDef,
|
|
80
82
|
SubscribeToShardOutputTypeDef,
|
|
83
|
+
TagResourceInputTypeDef,
|
|
84
|
+
UntagResourceInputTypeDef,
|
|
81
85
|
UpdateShardCountInputTypeDef,
|
|
82
86
|
UpdateShardCountOutputTypeDef,
|
|
83
87
|
UpdateStreamModeInputTypeDef,
|
|
@@ -340,6 +344,16 @@ class KinesisClient(BaseClient):
|
|
|
340
344
|
[Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_kinesis/client/#list_streams)
|
|
341
345
|
"""
|
|
342
346
|
|
|
347
|
+
def list_tags_for_resource(
|
|
348
|
+
self, **kwargs: Unpack[ListTagsForResourceInputTypeDef]
|
|
349
|
+
) -> ListTagsForResourceOutputTypeDef:
|
|
350
|
+
"""
|
|
351
|
+
List all tags added to the specified Kinesis resource.
|
|
352
|
+
|
|
353
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/kinesis/client/list_tags_for_resource.html)
|
|
354
|
+
[Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_kinesis/client/#list_tags_for_resource)
|
|
355
|
+
"""
|
|
356
|
+
|
|
343
357
|
def list_tags_for_stream(
|
|
344
358
|
self, **kwargs: Unpack[ListTagsForStreamInputTypeDef]
|
|
345
359
|
) -> ListTagsForStreamOutputTypeDef:
|
|
@@ -450,6 +464,26 @@ class KinesisClient(BaseClient):
|
|
|
450
464
|
[Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_kinesis/client/#subscribe_to_shard)
|
|
451
465
|
"""
|
|
452
466
|
|
|
467
|
+
def tag_resource(
|
|
468
|
+
self, **kwargs: Unpack[TagResourceInputTypeDef]
|
|
469
|
+
) -> EmptyResponseMetadataTypeDef:
|
|
470
|
+
"""
|
|
471
|
+
Adds or updates tags for the specified Kinesis resource.
|
|
472
|
+
|
|
473
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/kinesis/client/tag_resource.html)
|
|
474
|
+
[Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_kinesis/client/#tag_resource)
|
|
475
|
+
"""
|
|
476
|
+
|
|
477
|
+
def untag_resource(
|
|
478
|
+
self, **kwargs: Unpack[UntagResourceInputTypeDef]
|
|
479
|
+
) -> EmptyResponseMetadataTypeDef:
|
|
480
|
+
"""
|
|
481
|
+
Removes tags from the specified Kinesis resource.
|
|
482
|
+
|
|
483
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/kinesis/client/untag_resource.html)
|
|
484
|
+
[Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_kinesis/client/#untag_resource)
|
|
485
|
+
"""
|
|
486
|
+
|
|
453
487
|
def update_shard_count(
|
|
454
488
|
self, **kwargs: Unpack[UpdateShardCountInputTypeDef]
|
|
455
489
|
) -> UpdateShardCountOutputTypeDef:
|
types_boto3_kinesis/client.pyi
CHANGED
|
@@ -62,6 +62,8 @@ from .type_defs import (
|
|
|
62
62
|
ListStreamConsumersOutputTypeDef,
|
|
63
63
|
ListStreamsInputTypeDef,
|
|
64
64
|
ListStreamsOutputTypeDef,
|
|
65
|
+
ListTagsForResourceInputTypeDef,
|
|
66
|
+
ListTagsForResourceOutputTypeDef,
|
|
65
67
|
ListTagsForStreamInputTypeDef,
|
|
66
68
|
ListTagsForStreamOutputTypeDef,
|
|
67
69
|
MergeShardsInputTypeDef,
|
|
@@ -78,6 +80,8 @@ from .type_defs import (
|
|
|
78
80
|
StopStreamEncryptionInputTypeDef,
|
|
79
81
|
SubscribeToShardInputTypeDef,
|
|
80
82
|
SubscribeToShardOutputTypeDef,
|
|
83
|
+
TagResourceInputTypeDef,
|
|
84
|
+
UntagResourceInputTypeDef,
|
|
81
85
|
UpdateShardCountInputTypeDef,
|
|
82
86
|
UpdateShardCountOutputTypeDef,
|
|
83
87
|
UpdateStreamModeInputTypeDef,
|
|
@@ -337,6 +341,16 @@ class KinesisClient(BaseClient):
|
|
|
337
341
|
[Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_kinesis/client/#list_streams)
|
|
338
342
|
"""
|
|
339
343
|
|
|
344
|
+
def list_tags_for_resource(
|
|
345
|
+
self, **kwargs: Unpack[ListTagsForResourceInputTypeDef]
|
|
346
|
+
) -> ListTagsForResourceOutputTypeDef:
|
|
347
|
+
"""
|
|
348
|
+
List all tags added to the specified Kinesis resource.
|
|
349
|
+
|
|
350
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/kinesis/client/list_tags_for_resource.html)
|
|
351
|
+
[Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_kinesis/client/#list_tags_for_resource)
|
|
352
|
+
"""
|
|
353
|
+
|
|
340
354
|
def list_tags_for_stream(
|
|
341
355
|
self, **kwargs: Unpack[ListTagsForStreamInputTypeDef]
|
|
342
356
|
) -> ListTagsForStreamOutputTypeDef:
|
|
@@ -447,6 +461,26 @@ class KinesisClient(BaseClient):
|
|
|
447
461
|
[Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_kinesis/client/#subscribe_to_shard)
|
|
448
462
|
"""
|
|
449
463
|
|
|
464
|
+
def tag_resource(
|
|
465
|
+
self, **kwargs: Unpack[TagResourceInputTypeDef]
|
|
466
|
+
) -> EmptyResponseMetadataTypeDef:
|
|
467
|
+
"""
|
|
468
|
+
Adds or updates tags for the specified Kinesis resource.
|
|
469
|
+
|
|
470
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/kinesis/client/tag_resource.html)
|
|
471
|
+
[Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_kinesis/client/#tag_resource)
|
|
472
|
+
"""
|
|
473
|
+
|
|
474
|
+
def untag_resource(
|
|
475
|
+
self, **kwargs: Unpack[UntagResourceInputTypeDef]
|
|
476
|
+
) -> EmptyResponseMetadataTypeDef:
|
|
477
|
+
"""
|
|
478
|
+
Removes tags from the specified Kinesis resource.
|
|
479
|
+
|
|
480
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/kinesis/client/untag_resource.html)
|
|
481
|
+
[Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_kinesis/client/#untag_resource)
|
|
482
|
+
"""
|
|
483
|
+
|
|
450
484
|
def update_shard_count(
|
|
451
485
|
self, **kwargs: Unpack[UpdateShardCountInputTypeDef]
|
|
452
486
|
) -> UpdateShardCountOutputTypeDef:
|
types_boto3_kinesis/literals.py
CHANGED
|
@@ -84,6 +84,7 @@ ServiceName = Literal[
|
|
|
84
84
|
"account",
|
|
85
85
|
"acm",
|
|
86
86
|
"acm-pca",
|
|
87
|
+
"aiops",
|
|
87
88
|
"amp",
|
|
88
89
|
"amplify",
|
|
89
90
|
"amplifybackend",
|
|
@@ -121,6 +122,8 @@ ServiceName = Literal[
|
|
|
121
122
|
"bedrock",
|
|
122
123
|
"bedrock-agent",
|
|
123
124
|
"bedrock-agent-runtime",
|
|
125
|
+
"bedrock-agentcore",
|
|
126
|
+
"bedrock-agentcore-control",
|
|
124
127
|
"bedrock-data-automation",
|
|
125
128
|
"bedrock-data-automation-runtime",
|
|
126
129
|
"bedrock-runtime",
|
|
@@ -224,6 +227,7 @@ ServiceName = Literal[
|
|
|
224
227
|
"es",
|
|
225
228
|
"events",
|
|
226
229
|
"evidently",
|
|
230
|
+
"evs",
|
|
227
231
|
"finspace",
|
|
228
232
|
"finspace-data",
|
|
229
233
|
"firehose",
|
|
@@ -281,6 +285,7 @@ ServiceName = Literal[
|
|
|
281
285
|
"kendra",
|
|
282
286
|
"kendra-ranking",
|
|
283
287
|
"keyspaces",
|
|
288
|
+
"keyspacesstreams",
|
|
284
289
|
"kinesis",
|
|
285
290
|
"kinesis-video-archived-media",
|
|
286
291
|
"kinesis-video-media",
|
|
@@ -336,6 +341,7 @@ ServiceName = Literal[
|
|
|
336
341
|
"migrationhub-config",
|
|
337
342
|
"migrationhuborchestrator",
|
|
338
343
|
"migrationhubstrategy",
|
|
344
|
+
"mpa",
|
|
339
345
|
"mq",
|
|
340
346
|
"mturk",
|
|
341
347
|
"mwaa",
|
|
@@ -350,6 +356,7 @@ ServiceName = Literal[
|
|
|
350
356
|
"notificationscontacts",
|
|
351
357
|
"oam",
|
|
352
358
|
"observabilityadmin",
|
|
359
|
+
"odb",
|
|
353
360
|
"omics",
|
|
354
361
|
"opensearch",
|
|
355
362
|
"opensearchserverless",
|
|
@@ -376,7 +383,6 @@ ServiceName = Literal[
|
|
|
376
383
|
"pipes",
|
|
377
384
|
"polly",
|
|
378
385
|
"pricing",
|
|
379
|
-
"privatenetworks",
|
|
380
386
|
"proton",
|
|
381
387
|
"qapps",
|
|
382
388
|
"qbusiness",
|
|
@@ -411,6 +417,7 @@ ServiceName = Literal[
|
|
|
411
417
|
"s3control",
|
|
412
418
|
"s3outposts",
|
|
413
419
|
"s3tables",
|
|
420
|
+
"s3vectors",
|
|
414
421
|
"sagemaker",
|
|
415
422
|
"sagemaker-a2i-runtime",
|
|
416
423
|
"sagemaker-edge",
|
|
@@ -437,7 +444,6 @@ ServiceName = Literal[
|
|
|
437
444
|
"signer",
|
|
438
445
|
"simspaceweaver",
|
|
439
446
|
"sms",
|
|
440
|
-
"sms-voice",
|
|
441
447
|
"snow-device-management",
|
|
442
448
|
"snowball",
|
|
443
449
|
"sns",
|
|
@@ -445,6 +451,7 @@ ServiceName = Literal[
|
|
|
445
451
|
"sqs",
|
|
446
452
|
"ssm",
|
|
447
453
|
"ssm-contacts",
|
|
454
|
+
"ssm-guiconnect",
|
|
448
455
|
"ssm-incidents",
|
|
449
456
|
"ssm-quicksetup",
|
|
450
457
|
"ssm-sap",
|
|
@@ -481,6 +488,7 @@ ServiceName = Literal[
|
|
|
481
488
|
"workmail",
|
|
482
489
|
"workmailmessageflow",
|
|
483
490
|
"workspaces",
|
|
491
|
+
"workspaces-instances",
|
|
484
492
|
"workspaces-thin-client",
|
|
485
493
|
"workspaces-web",
|
|
486
494
|
"xray",
|
|
@@ -502,6 +510,7 @@ WaiterName = Literal["stream_exists", "stream_not_exists"]
|
|
|
502
510
|
RegionName = Literal[
|
|
503
511
|
"af-south-1",
|
|
504
512
|
"ap-east-1",
|
|
513
|
+
"ap-east-2",
|
|
505
514
|
"ap-northeast-1",
|
|
506
515
|
"ap-northeast-2",
|
|
507
516
|
"ap-northeast-3",
|
types_boto3_kinesis/literals.pyi
CHANGED
|
@@ -82,6 +82,7 @@ ServiceName = Literal[
|
|
|
82
82
|
"account",
|
|
83
83
|
"acm",
|
|
84
84
|
"acm-pca",
|
|
85
|
+
"aiops",
|
|
85
86
|
"amp",
|
|
86
87
|
"amplify",
|
|
87
88
|
"amplifybackend",
|
|
@@ -119,6 +120,8 @@ ServiceName = Literal[
|
|
|
119
120
|
"bedrock",
|
|
120
121
|
"bedrock-agent",
|
|
121
122
|
"bedrock-agent-runtime",
|
|
123
|
+
"bedrock-agentcore",
|
|
124
|
+
"bedrock-agentcore-control",
|
|
122
125
|
"bedrock-data-automation",
|
|
123
126
|
"bedrock-data-automation-runtime",
|
|
124
127
|
"bedrock-runtime",
|
|
@@ -222,6 +225,7 @@ ServiceName = Literal[
|
|
|
222
225
|
"es",
|
|
223
226
|
"events",
|
|
224
227
|
"evidently",
|
|
228
|
+
"evs",
|
|
225
229
|
"finspace",
|
|
226
230
|
"finspace-data",
|
|
227
231
|
"firehose",
|
|
@@ -279,6 +283,7 @@ ServiceName = Literal[
|
|
|
279
283
|
"kendra",
|
|
280
284
|
"kendra-ranking",
|
|
281
285
|
"keyspaces",
|
|
286
|
+
"keyspacesstreams",
|
|
282
287
|
"kinesis",
|
|
283
288
|
"kinesis-video-archived-media",
|
|
284
289
|
"kinesis-video-media",
|
|
@@ -334,6 +339,7 @@ ServiceName = Literal[
|
|
|
334
339
|
"migrationhub-config",
|
|
335
340
|
"migrationhuborchestrator",
|
|
336
341
|
"migrationhubstrategy",
|
|
342
|
+
"mpa",
|
|
337
343
|
"mq",
|
|
338
344
|
"mturk",
|
|
339
345
|
"mwaa",
|
|
@@ -348,6 +354,7 @@ ServiceName = Literal[
|
|
|
348
354
|
"notificationscontacts",
|
|
349
355
|
"oam",
|
|
350
356
|
"observabilityadmin",
|
|
357
|
+
"odb",
|
|
351
358
|
"omics",
|
|
352
359
|
"opensearch",
|
|
353
360
|
"opensearchserverless",
|
|
@@ -374,7 +381,6 @@ ServiceName = Literal[
|
|
|
374
381
|
"pipes",
|
|
375
382
|
"polly",
|
|
376
383
|
"pricing",
|
|
377
|
-
"privatenetworks",
|
|
378
384
|
"proton",
|
|
379
385
|
"qapps",
|
|
380
386
|
"qbusiness",
|
|
@@ -409,6 +415,7 @@ ServiceName = Literal[
|
|
|
409
415
|
"s3control",
|
|
410
416
|
"s3outposts",
|
|
411
417
|
"s3tables",
|
|
418
|
+
"s3vectors",
|
|
412
419
|
"sagemaker",
|
|
413
420
|
"sagemaker-a2i-runtime",
|
|
414
421
|
"sagemaker-edge",
|
|
@@ -435,7 +442,6 @@ ServiceName = Literal[
|
|
|
435
442
|
"signer",
|
|
436
443
|
"simspaceweaver",
|
|
437
444
|
"sms",
|
|
438
|
-
"sms-voice",
|
|
439
445
|
"snow-device-management",
|
|
440
446
|
"snowball",
|
|
441
447
|
"sns",
|
|
@@ -443,6 +449,7 @@ ServiceName = Literal[
|
|
|
443
449
|
"sqs",
|
|
444
450
|
"ssm",
|
|
445
451
|
"ssm-contacts",
|
|
452
|
+
"ssm-guiconnect",
|
|
446
453
|
"ssm-incidents",
|
|
447
454
|
"ssm-quicksetup",
|
|
448
455
|
"ssm-sap",
|
|
@@ -479,6 +486,7 @@ ServiceName = Literal[
|
|
|
479
486
|
"workmail",
|
|
480
487
|
"workmailmessageflow",
|
|
481
488
|
"workspaces",
|
|
489
|
+
"workspaces-instances",
|
|
482
490
|
"workspaces-thin-client",
|
|
483
491
|
"workspaces-web",
|
|
484
492
|
"xray",
|
|
@@ -500,6 +508,7 @@ WaiterName = Literal["stream_exists", "stream_not_exists"]
|
|
|
500
508
|
RegionName = Literal[
|
|
501
509
|
"af-south-1",
|
|
502
510
|
"ap-east-1",
|
|
511
|
+
"ap-east-2",
|
|
503
512
|
"ap-northeast-1",
|
|
504
513
|
"ap-northeast-2",
|
|
505
514
|
"ap-northeast-3",
|
types_boto3_kinesis/type_defs.py
CHANGED
|
@@ -95,6 +95,8 @@ __all__ = (
|
|
|
95
95
|
"ListStreamsInputPaginateTypeDef",
|
|
96
96
|
"ListStreamsInputTypeDef",
|
|
97
97
|
"ListStreamsOutputTypeDef",
|
|
98
|
+
"ListTagsForResourceInputTypeDef",
|
|
99
|
+
"ListTagsForResourceOutputTypeDef",
|
|
98
100
|
"ListTagsForStreamInputTypeDef",
|
|
99
101
|
"ListTagsForStreamOutputTypeDef",
|
|
100
102
|
"MergeShardsInputTypeDef",
|
|
@@ -128,8 +130,10 @@ __all__ = (
|
|
|
128
130
|
"SubscribeToShardEventTypeDef",
|
|
129
131
|
"SubscribeToShardInputTypeDef",
|
|
130
132
|
"SubscribeToShardOutputTypeDef",
|
|
133
|
+
"TagResourceInputTypeDef",
|
|
131
134
|
"TagTypeDef",
|
|
132
135
|
"TimestampTypeDef",
|
|
136
|
+
"UntagResourceInputTypeDef",
|
|
133
137
|
"UpdateShardCountInputTypeDef",
|
|
134
138
|
"UpdateShardCountOutputTypeDef",
|
|
135
139
|
"UpdateStreamModeInputTypeDef",
|
|
@@ -306,11 +310,8 @@ class ListStreamsInputTypeDef(TypedDict):
|
|
|
306
310
|
NextToken: NotRequired[str]
|
|
307
311
|
|
|
308
312
|
|
|
309
|
-
class
|
|
310
|
-
|
|
311
|
-
ExclusiveStartTagKey: NotRequired[str]
|
|
312
|
-
Limit: NotRequired[int]
|
|
313
|
-
StreamARN: NotRequired[str]
|
|
313
|
+
class ListTagsForResourceInputTypeDef(TypedDict):
|
|
314
|
+
ResourceARN: str
|
|
314
315
|
|
|
315
316
|
|
|
316
317
|
class TagTypeDef(TypedDict):
|
|
@@ -318,6 +319,13 @@ class TagTypeDef(TypedDict):
|
|
|
318
319
|
Value: NotRequired[str]
|
|
319
320
|
|
|
320
321
|
|
|
322
|
+
class ListTagsForStreamInputTypeDef(TypedDict):
|
|
323
|
+
StreamName: NotRequired[str]
|
|
324
|
+
ExclusiveStartTagKey: NotRequired[str]
|
|
325
|
+
Limit: NotRequired[int]
|
|
326
|
+
StreamARN: NotRequired[str]
|
|
327
|
+
|
|
328
|
+
|
|
321
329
|
class MergeShardsInputTypeDef(TypedDict):
|
|
322
330
|
ShardToMerge: str
|
|
323
331
|
AdjacentShardToMerge: str
|
|
@@ -340,6 +348,7 @@ class PutResourcePolicyInputTypeDef(TypedDict):
|
|
|
340
348
|
class RegisterStreamConsumerInputTypeDef(TypedDict):
|
|
341
349
|
StreamARN: str
|
|
342
350
|
ConsumerName: str
|
|
351
|
+
Tags: NotRequired[Mapping[str, str]]
|
|
343
352
|
|
|
344
353
|
|
|
345
354
|
class RemoveTagsFromStreamInputTypeDef(TypedDict):
|
|
@@ -382,6 +391,16 @@ class StopStreamEncryptionInputTypeDef(TypedDict):
|
|
|
382
391
|
StreamARN: NotRequired[str]
|
|
383
392
|
|
|
384
393
|
|
|
394
|
+
class TagResourceInputTypeDef(TypedDict):
|
|
395
|
+
Tags: Mapping[str, str]
|
|
396
|
+
ResourceARN: str
|
|
397
|
+
|
|
398
|
+
|
|
399
|
+
class UntagResourceInputTypeDef(TypedDict):
|
|
400
|
+
TagKeys: Sequence[str]
|
|
401
|
+
ResourceARN: str
|
|
402
|
+
|
|
403
|
+
|
|
385
404
|
class UpdateShardCountInputTypeDef(TypedDict):
|
|
386
405
|
TargetShardCount: int
|
|
387
406
|
ScalingType: Literal["UNIFORM_SCALING"]
|
|
@@ -572,6 +591,11 @@ StartingPositionTypeDef = TypedDict(
|
|
|
572
591
|
)
|
|
573
592
|
|
|
574
593
|
|
|
594
|
+
class ListTagsForResourceOutputTypeDef(TypedDict):
|
|
595
|
+
Tags: List[TagTypeDef]
|
|
596
|
+
ResponseMetadata: ResponseMetadataTypeDef
|
|
597
|
+
|
|
598
|
+
|
|
575
599
|
class ListTagsForStreamOutputTypeDef(TypedDict):
|
|
576
600
|
Tags: List[TagTypeDef]
|
|
577
601
|
HasMoreTags: bool
|
|
@@ -94,6 +94,8 @@ __all__ = (
|
|
|
94
94
|
"ListStreamsInputPaginateTypeDef",
|
|
95
95
|
"ListStreamsInputTypeDef",
|
|
96
96
|
"ListStreamsOutputTypeDef",
|
|
97
|
+
"ListTagsForResourceInputTypeDef",
|
|
98
|
+
"ListTagsForResourceOutputTypeDef",
|
|
97
99
|
"ListTagsForStreamInputTypeDef",
|
|
98
100
|
"ListTagsForStreamOutputTypeDef",
|
|
99
101
|
"MergeShardsInputTypeDef",
|
|
@@ -127,8 +129,10 @@ __all__ = (
|
|
|
127
129
|
"SubscribeToShardEventTypeDef",
|
|
128
130
|
"SubscribeToShardInputTypeDef",
|
|
129
131
|
"SubscribeToShardOutputTypeDef",
|
|
132
|
+
"TagResourceInputTypeDef",
|
|
130
133
|
"TagTypeDef",
|
|
131
134
|
"TimestampTypeDef",
|
|
135
|
+
"UntagResourceInputTypeDef",
|
|
132
136
|
"UpdateShardCountInputTypeDef",
|
|
133
137
|
"UpdateShardCountOutputTypeDef",
|
|
134
138
|
"UpdateStreamModeInputTypeDef",
|
|
@@ -272,16 +276,19 @@ class ListStreamsInputTypeDef(TypedDict):
|
|
|
272
276
|
ExclusiveStartStreamName: NotRequired[str]
|
|
273
277
|
NextToken: NotRequired[str]
|
|
274
278
|
|
|
279
|
+
class ListTagsForResourceInputTypeDef(TypedDict):
|
|
280
|
+
ResourceARN: str
|
|
281
|
+
|
|
282
|
+
class TagTypeDef(TypedDict):
|
|
283
|
+
Key: str
|
|
284
|
+
Value: NotRequired[str]
|
|
285
|
+
|
|
275
286
|
class ListTagsForStreamInputTypeDef(TypedDict):
|
|
276
287
|
StreamName: NotRequired[str]
|
|
277
288
|
ExclusiveStartTagKey: NotRequired[str]
|
|
278
289
|
Limit: NotRequired[int]
|
|
279
290
|
StreamARN: NotRequired[str]
|
|
280
291
|
|
|
281
|
-
class TagTypeDef(TypedDict):
|
|
282
|
-
Key: str
|
|
283
|
-
Value: NotRequired[str]
|
|
284
|
-
|
|
285
292
|
class MergeShardsInputTypeDef(TypedDict):
|
|
286
293
|
ShardToMerge: str
|
|
287
294
|
AdjacentShardToMerge: str
|
|
@@ -301,6 +308,7 @@ class PutResourcePolicyInputTypeDef(TypedDict):
|
|
|
301
308
|
class RegisterStreamConsumerInputTypeDef(TypedDict):
|
|
302
309
|
StreamARN: str
|
|
303
310
|
ConsumerName: str
|
|
311
|
+
Tags: NotRequired[Mapping[str, str]]
|
|
304
312
|
|
|
305
313
|
class RemoveTagsFromStreamInputTypeDef(TypedDict):
|
|
306
314
|
TagKeys: Sequence[str]
|
|
@@ -335,6 +343,14 @@ class StopStreamEncryptionInputTypeDef(TypedDict):
|
|
|
335
343
|
StreamName: NotRequired[str]
|
|
336
344
|
StreamARN: NotRequired[str]
|
|
337
345
|
|
|
346
|
+
class TagResourceInputTypeDef(TypedDict):
|
|
347
|
+
Tags: Mapping[str, str]
|
|
348
|
+
ResourceARN: str
|
|
349
|
+
|
|
350
|
+
class UntagResourceInputTypeDef(TypedDict):
|
|
351
|
+
TagKeys: Sequence[str]
|
|
352
|
+
ResourceARN: str
|
|
353
|
+
|
|
338
354
|
class UpdateShardCountInputTypeDef(TypedDict):
|
|
339
355
|
TargetShardCount: int
|
|
340
356
|
ScalingType: Literal["UNIFORM_SCALING"]
|
|
@@ -499,6 +515,10 @@ StartingPositionTypeDef = TypedDict(
|
|
|
499
515
|
},
|
|
500
516
|
)
|
|
501
517
|
|
|
518
|
+
class ListTagsForResourceOutputTypeDef(TypedDict):
|
|
519
|
+
Tags: List[TagTypeDef]
|
|
520
|
+
ResponseMetadata: ResponseMetadataTypeDef
|
|
521
|
+
|
|
502
522
|
class ListTagsForStreamOutputTypeDef(TypedDict):
|
|
503
523
|
Tags: List[TagTypeDef]
|
|
504
524
|
HasMoreTags: bool
|
types_boto3_kinesis/version.py
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: types-boto3-kinesis
|
|
3
|
-
Version: 1.
|
|
4
|
-
Summary: Type annotations for boto3 Kinesis 1.
|
|
3
|
+
Version: 1.40.0
|
|
4
|
+
Summary: Type annotations for boto3 Kinesis 1.40.0 service generated with mypy-boto3-builder 8.11.0
|
|
5
5
|
Home-page: https://github.com/youtype/mypy_boto3_builder
|
|
6
6
|
Author: Vlad Emelianov
|
|
7
7
|
Author-email: vlad.emelianov.nz@gmail.com
|
|
@@ -56,7 +56,7 @@ Dynamic: summary
|
|
|
56
56
|
|
|
57
57
|

|
|
58
58
|
|
|
59
|
-
Type annotations for [boto3 Kinesis 1.
|
|
59
|
+
Type annotations for [boto3 Kinesis 1.40.0](https://pypi.org/project/boto3/)
|
|
60
60
|
compatible with [VSCode](https://code.visualstudio.com/),
|
|
61
61
|
[PyCharm](https://www.jetbrains.com/pycharm/),
|
|
62
62
|
[Emacs](https://www.gnu.org/software/emacs/),
|
|
@@ -65,7 +65,7 @@ compatible with [VSCode](https://code.visualstudio.com/),
|
|
|
65
65
|
[pyright](https://github.com/microsoft/pyright) and other tools.
|
|
66
66
|
|
|
67
67
|
Generated with
|
|
68
|
-
[mypy-boto3-builder 8.
|
|
68
|
+
[mypy-boto3-builder 8.11.0](https://github.com/youtype/mypy_boto3_builder).
|
|
69
69
|
|
|
70
70
|
More information can be found on
|
|
71
71
|
[types-boto3](https://pypi.org/project/types-boto3/) page and in
|
|
@@ -119,7 +119,7 @@ You can generate type annotations for `boto3` package locally with
|
|
|
119
119
|
isolation.
|
|
120
120
|
|
|
121
121
|
1. Run mypy-boto3-builder in your package root directory:
|
|
122
|
-
`uvx --with 'boto3==1.
|
|
122
|
+
`uvx --with 'boto3==1.40.0' mypy-boto3-builder`
|
|
123
123
|
2. Select `boto3` AWS SDK.
|
|
124
124
|
3. Add `Kinesis` service.
|
|
125
125
|
4. Use provided commands to install generated packages.
|
|
@@ -0,0 +1,20 @@
|
|
|
1
|
+
types_boto3_kinesis/__init__.py,sha256=dZibOr76dfPr5wCNANDykI0UyW9xMfDc7FIy9zGg6Yk,1629
|
|
2
|
+
types_boto3_kinesis/__init__.pyi,sha256=pw7BwtQjYyrjE-yxnkidlbq5kqFJ40aHk8Hqc3gAdjc,1628
|
|
3
|
+
types_boto3_kinesis/__main__.py,sha256=UpNUCEitA7zz_X9t0W7qFbK2LmhXvw39PyX3_wj4zTg,982
|
|
4
|
+
types_boto3_kinesis/client.py,sha256=KMJNUlhqFrq2ZShTQ-f3gWAgBGwxxQAKdDAT6dxNb54,26949
|
|
5
|
+
types_boto3_kinesis/client.pyi,sha256=p8Msga1z4KVzIgiVUh3m4LCiYMCl7fMp8qxiI-7SIdM,26946
|
|
6
|
+
types_boto3_kinesis/literals.py,sha256=02ZL-r3va0Xvx8m8cKczfaTTHLcCxyN95htoiKer18c,11329
|
|
7
|
+
types_boto3_kinesis/literals.pyi,sha256=7dzU_UXm1RpKAQj6JxnGZcZ173pfVy4J0pFDON_dvmA,11327
|
|
8
|
+
types_boto3_kinesis/paginator.py,sha256=tMC0xMFFTj7jnmlqwVbXpDOSYATB8gxMvirWthVDEVc,5986
|
|
9
|
+
types_boto3_kinesis/paginator.pyi,sha256=h8U46TN6_yXBwm8b2leZaWuJbYu8xznqIQMaygMEmAY,5973
|
|
10
|
+
types_boto3_kinesis/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
11
|
+
types_boto3_kinesis/type_defs.py,sha256=cekhVRnqDm2upbT_Ix9v0HDWYWHWDLG5GKItw0pSTSc,19477
|
|
12
|
+
types_boto3_kinesis/type_defs.pyi,sha256=P_heYueeL9XOEIKefJIx2ekfAPOa3mm9IVLK_5B1bo4,19385
|
|
13
|
+
types_boto3_kinesis/version.py,sha256=52Sk0XpA8tC09WfcAI6nm69vLa0ysg1C33ACO_NFSwc,92
|
|
14
|
+
types_boto3_kinesis/waiter.py,sha256=G_i6sGWuCOCa-Zctf6dxfBAZSVzIHppZFXO4Op5MI-U,2651
|
|
15
|
+
types_boto3_kinesis/waiter.pyi,sha256=htjYy9RXj6f6iSX8l0Pb6gIW_xsiFy9QPHRC9DzueHQ,2646
|
|
16
|
+
types_boto3_kinesis-1.40.0.dist-info/licenses/LICENSE,sha256=4jNgB8jJbXtUVJkeygwhUQi--6lAG8DIisfE-h_RiUU,1070
|
|
17
|
+
types_boto3_kinesis-1.40.0.dist-info/METADATA,sha256=XMqXlaS89iXGjssuJy2b85MDUX-qJkJEE3e74yQmhxk,15978
|
|
18
|
+
types_boto3_kinesis-1.40.0.dist-info/WHEEL,sha256=_zCd3N1l69ArxyTb8rzEoP9TpbYXkqRFSNOD5OuxnTs,91
|
|
19
|
+
types_boto3_kinesis-1.40.0.dist-info/top_level.txt,sha256=QOBfHpTRND8MxYawOcHI9oTlGuMPIGXZybD8VDr23WE,20
|
|
20
|
+
types_boto3_kinesis-1.40.0.dist-info/RECORD,,
|
|
@@ -1,20 +0,0 @@
|
|
|
1
|
-
types_boto3_kinesis/__init__.py,sha256=dZibOr76dfPr5wCNANDykI0UyW9xMfDc7FIy9zGg6Yk,1629
|
|
2
|
-
types_boto3_kinesis/__init__.pyi,sha256=pw7BwtQjYyrjE-yxnkidlbq5kqFJ40aHk8Hqc3gAdjc,1628
|
|
3
|
-
types_boto3_kinesis/__main__.py,sha256=0Op2hDmC1BiMpMDPh3JE1eWtkILBj-UmuBqSMKLGaI4,982
|
|
4
|
-
types_boto3_kinesis/client.py,sha256=yoXV8iWE2dzAkfpge5YLwKjdVQdBp_OsVo90HShNKeQ,25339
|
|
5
|
-
types_boto3_kinesis/client.pyi,sha256=t093bawAtFbxVEwn_opW0bitaW3HNsqyOvaNv3LGfPw,25336
|
|
6
|
-
types_boto3_kinesis/literals.py,sha256=NVBMkbljSg4w6HPl725oDgaOZiUvU8-xn9dB2xvgZkc,11157
|
|
7
|
-
types_boto3_kinesis/literals.pyi,sha256=Qps9lXbqWXepUk0-7SvugIKWZWEN45u6cGgu3UIDWdo,11155
|
|
8
|
-
types_boto3_kinesis/paginator.py,sha256=tMC0xMFFTj7jnmlqwVbXpDOSYATB8gxMvirWthVDEVc,5986
|
|
9
|
-
types_boto3_kinesis/paginator.pyi,sha256=h8U46TN6_yXBwm8b2leZaWuJbYu8xznqIQMaygMEmAY,5973
|
|
10
|
-
types_boto3_kinesis/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
11
|
-
types_boto3_kinesis/type_defs.py,sha256=Rv1Xvnv5g6jl9H7fUXmTZC0a0r1zxJeiD8j0tesIyaA,18907
|
|
12
|
-
types_boto3_kinesis/type_defs.pyi,sha256=b-sYD8Ru-5n50u3TrOaX3WTpVuGxvkEGUSMFu11AMEs,18819
|
|
13
|
-
types_boto3_kinesis/version.py,sha256=chIm161Dw81Gs3vO6CH1PT2nlb-lCUhY_igz_jcxAO8,92
|
|
14
|
-
types_boto3_kinesis/waiter.py,sha256=G_i6sGWuCOCa-Zctf6dxfBAZSVzIHppZFXO4Op5MI-U,2651
|
|
15
|
-
types_boto3_kinesis/waiter.pyi,sha256=htjYy9RXj6f6iSX8l0Pb6gIW_xsiFy9QPHRC9DzueHQ,2646
|
|
16
|
-
types_boto3_kinesis-1.38.0.dist-info/licenses/LICENSE,sha256=4jNgB8jJbXtUVJkeygwhUQi--6lAG8DIisfE-h_RiUU,1070
|
|
17
|
-
types_boto3_kinesis-1.38.0.dist-info/METADATA,sha256=62ZbUAifrw3l7Qmn6zOXOVZA5rXsCxmx41_NBMG9aAc,15978
|
|
18
|
-
types_boto3_kinesis-1.38.0.dist-info/WHEEL,sha256=pxyMxgL8-pra_rKaQ4drOZAegBVuX-G_4nRHjjgWbmo,91
|
|
19
|
-
types_boto3_kinesis-1.38.0.dist-info/top_level.txt,sha256=QOBfHpTRND8MxYawOcHI9oTlGuMPIGXZybD8VDr23WE,20
|
|
20
|
-
types_boto3_kinesis-1.38.0.dist-info/RECORD,,
|
{types_boto3_kinesis-1.38.0.dist-info → types_boto3_kinesis-1.40.0.dist-info}/licenses/LICENSE
RENAMED
|
File without changes
|
|
File without changes
|