types-boto3-kinesis 1.39.0__py3-none-any.whl → 1.40.60__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 +3 -3
- types_boto3_kinesis/client.py +12 -0
- types_boto3_kinesis/client.pyi +12 -0
- types_boto3_kinesis/literals.py +10 -13
- types_boto3_kinesis/literals.pyi +10 -13
- types_boto3_kinesis/type_defs.py +8 -0
- types_boto3_kinesis/type_defs.pyi +7 -0
- types_boto3_kinesis/version.py +1 -1
- {types_boto3_kinesis-1.39.0.dist-info → types_boto3_kinesis-1.40.60.dist-info}/METADATA +4 -4
- types_boto3_kinesis-1.40.60.dist-info/RECORD +20 -0
- types_boto3_kinesis-1.39.0.dist-info/RECORD +0 -20
- {types_boto3_kinesis-1.39.0.dist-info → types_boto3_kinesis-1.40.60.dist-info}/WHEEL +0 -0
- {types_boto3_kinesis-1.39.0.dist-info → types_boto3_kinesis-1.40.60.dist-info}/licenses/LICENSE +0 -0
- {types_boto3_kinesis-1.39.0.dist-info → types_boto3_kinesis-1.40.60.dist-info}/top_level.txt +0 -0
types_boto3_kinesis/__main__.py
CHANGED
|
@@ -12,8 +12,8 @@ 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.
|
|
15
|
+
"Type annotations for boto3 Kinesis 1.40.60\n"
|
|
16
|
+
"Version: 1.40.60\n"
|
|
17
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"
|
|
@@ -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.60\n")
|
|
30
30
|
|
|
31
31
|
|
|
32
32
|
def main() -> None:
|
types_boto3_kinesis/client.py
CHANGED
|
@@ -82,6 +82,7 @@ from .type_defs import (
|
|
|
82
82
|
SubscribeToShardOutputTypeDef,
|
|
83
83
|
TagResourceInputTypeDef,
|
|
84
84
|
UntagResourceInputTypeDef,
|
|
85
|
+
UpdateMaxRecordSizeInputTypeDef,
|
|
85
86
|
UpdateShardCountInputTypeDef,
|
|
86
87
|
UpdateShardCountOutputTypeDef,
|
|
87
88
|
UpdateStreamModeInputTypeDef,
|
|
@@ -484,6 +485,17 @@ class KinesisClient(BaseClient):
|
|
|
484
485
|
[Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_kinesis/client/#untag_resource)
|
|
485
486
|
"""
|
|
486
487
|
|
|
488
|
+
def update_max_record_size(
|
|
489
|
+
self, **kwargs: Unpack[UpdateMaxRecordSizeInputTypeDef]
|
|
490
|
+
) -> EmptyResponseMetadataTypeDef:
|
|
491
|
+
"""
|
|
492
|
+
This allows you to update the <code>MaxRecordSize</code> of a single record
|
|
493
|
+
that you can write to, and read from a stream.
|
|
494
|
+
|
|
495
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/kinesis/client/update_max_record_size.html)
|
|
496
|
+
[Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_kinesis/client/#update_max_record_size)
|
|
497
|
+
"""
|
|
498
|
+
|
|
487
499
|
def update_shard_count(
|
|
488
500
|
self, **kwargs: Unpack[UpdateShardCountInputTypeDef]
|
|
489
501
|
) -> UpdateShardCountOutputTypeDef:
|
types_boto3_kinesis/client.pyi
CHANGED
|
@@ -82,6 +82,7 @@ from .type_defs import (
|
|
|
82
82
|
SubscribeToShardOutputTypeDef,
|
|
83
83
|
TagResourceInputTypeDef,
|
|
84
84
|
UntagResourceInputTypeDef,
|
|
85
|
+
UpdateMaxRecordSizeInputTypeDef,
|
|
85
86
|
UpdateShardCountInputTypeDef,
|
|
86
87
|
UpdateShardCountOutputTypeDef,
|
|
87
88
|
UpdateStreamModeInputTypeDef,
|
|
@@ -481,6 +482,17 @@ class KinesisClient(BaseClient):
|
|
|
481
482
|
[Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_kinesis/client/#untag_resource)
|
|
482
483
|
"""
|
|
483
484
|
|
|
485
|
+
def update_max_record_size(
|
|
486
|
+
self, **kwargs: Unpack[UpdateMaxRecordSizeInputTypeDef]
|
|
487
|
+
) -> EmptyResponseMetadataTypeDef:
|
|
488
|
+
"""
|
|
489
|
+
This allows you to update the <code>MaxRecordSize</code> of a single record
|
|
490
|
+
that you can write to, and read from a stream.
|
|
491
|
+
|
|
492
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/kinesis/client/update_max_record_size.html)
|
|
493
|
+
[Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_kinesis/client/#update_max_record_size)
|
|
494
|
+
"""
|
|
495
|
+
|
|
484
496
|
def update_shard_count(
|
|
485
497
|
self, **kwargs: Unpack[UpdateShardCountInputTypeDef]
|
|
486
498
|
) -> UpdateShardCountOutputTypeDef:
|
types_boto3_kinesis/literals.py
CHANGED
|
@@ -106,6 +106,7 @@ ServiceName = Literal[
|
|
|
106
106
|
"appstream",
|
|
107
107
|
"appsync",
|
|
108
108
|
"apptest",
|
|
109
|
+
"arc-region-switch",
|
|
109
110
|
"arc-zonal-shift",
|
|
110
111
|
"artifact",
|
|
111
112
|
"athena",
|
|
@@ -117,11 +118,15 @@ ServiceName = Literal[
|
|
|
117
118
|
"backup-gateway",
|
|
118
119
|
"backupsearch",
|
|
119
120
|
"batch",
|
|
121
|
+
"bcm-dashboards",
|
|
120
122
|
"bcm-data-exports",
|
|
121
123
|
"bcm-pricing-calculator",
|
|
124
|
+
"bcm-recommended-actions",
|
|
122
125
|
"bedrock",
|
|
123
126
|
"bedrock-agent",
|
|
124
127
|
"bedrock-agent-runtime",
|
|
128
|
+
"bedrock-agentcore",
|
|
129
|
+
"bedrock-agentcore-control",
|
|
125
130
|
"bedrock-data-automation",
|
|
126
131
|
"bedrock-data-automation-runtime",
|
|
127
132
|
"bedrock-runtime",
|
|
@@ -354,11 +359,10 @@ ServiceName = Literal[
|
|
|
354
359
|
"notificationscontacts",
|
|
355
360
|
"oam",
|
|
356
361
|
"observabilityadmin",
|
|
362
|
+
"odb",
|
|
357
363
|
"omics",
|
|
358
364
|
"opensearch",
|
|
359
365
|
"opensearchserverless",
|
|
360
|
-
"opsworks",
|
|
361
|
-
"opsworkscm",
|
|
362
366
|
"organizations",
|
|
363
367
|
"osis",
|
|
364
368
|
"outposts",
|
|
@@ -409,11 +413,13 @@ ServiceName = Literal[
|
|
|
409
413
|
"route53domains",
|
|
410
414
|
"route53profiles",
|
|
411
415
|
"route53resolver",
|
|
416
|
+
"rtbfabric",
|
|
412
417
|
"rum",
|
|
413
418
|
"s3",
|
|
414
419
|
"s3control",
|
|
415
420
|
"s3outposts",
|
|
416
421
|
"s3tables",
|
|
422
|
+
"s3vectors",
|
|
417
423
|
"sagemaker",
|
|
418
424
|
"sagemaker-a2i-runtime",
|
|
419
425
|
"sagemaker-edge",
|
|
@@ -439,7 +445,6 @@ ServiceName = Literal[
|
|
|
439
445
|
"shield",
|
|
440
446
|
"signer",
|
|
441
447
|
"simspaceweaver",
|
|
442
|
-
"sms",
|
|
443
448
|
"snow-device-management",
|
|
444
449
|
"snowball",
|
|
445
450
|
"sns",
|
|
@@ -490,16 +495,7 @@ ServiceName = Literal[
|
|
|
490
495
|
"xray",
|
|
491
496
|
]
|
|
492
497
|
ResourceServiceName = Literal[
|
|
493
|
-
"cloudformation",
|
|
494
|
-
"cloudwatch",
|
|
495
|
-
"dynamodb",
|
|
496
|
-
"ec2",
|
|
497
|
-
"glacier",
|
|
498
|
-
"iam",
|
|
499
|
-
"opsworks",
|
|
500
|
-
"s3",
|
|
501
|
-
"sns",
|
|
502
|
-
"sqs",
|
|
498
|
+
"cloudformation", "cloudwatch", "dynamodb", "ec2", "glacier", "iam", "s3", "sns", "sqs"
|
|
503
499
|
]
|
|
504
500
|
PaginatorName = Literal["describe_stream", "list_shards", "list_stream_consumers", "list_streams"]
|
|
505
501
|
WaiterName = Literal["stream_exists", "stream_not_exists"]
|
|
@@ -517,6 +513,7 @@ RegionName = Literal[
|
|
|
517
513
|
"ap-southeast-3",
|
|
518
514
|
"ap-southeast-4",
|
|
519
515
|
"ap-southeast-5",
|
|
516
|
+
"ap-southeast-6",
|
|
520
517
|
"ap-southeast-7",
|
|
521
518
|
"ca-central-1",
|
|
522
519
|
"ca-west-1",
|
types_boto3_kinesis/literals.pyi
CHANGED
|
@@ -104,6 +104,7 @@ ServiceName = Literal[
|
|
|
104
104
|
"appstream",
|
|
105
105
|
"appsync",
|
|
106
106
|
"apptest",
|
|
107
|
+
"arc-region-switch",
|
|
107
108
|
"arc-zonal-shift",
|
|
108
109
|
"artifact",
|
|
109
110
|
"athena",
|
|
@@ -115,11 +116,15 @@ ServiceName = Literal[
|
|
|
115
116
|
"backup-gateway",
|
|
116
117
|
"backupsearch",
|
|
117
118
|
"batch",
|
|
119
|
+
"bcm-dashboards",
|
|
118
120
|
"bcm-data-exports",
|
|
119
121
|
"bcm-pricing-calculator",
|
|
122
|
+
"bcm-recommended-actions",
|
|
120
123
|
"bedrock",
|
|
121
124
|
"bedrock-agent",
|
|
122
125
|
"bedrock-agent-runtime",
|
|
126
|
+
"bedrock-agentcore",
|
|
127
|
+
"bedrock-agentcore-control",
|
|
123
128
|
"bedrock-data-automation",
|
|
124
129
|
"bedrock-data-automation-runtime",
|
|
125
130
|
"bedrock-runtime",
|
|
@@ -352,11 +357,10 @@ ServiceName = Literal[
|
|
|
352
357
|
"notificationscontacts",
|
|
353
358
|
"oam",
|
|
354
359
|
"observabilityadmin",
|
|
360
|
+
"odb",
|
|
355
361
|
"omics",
|
|
356
362
|
"opensearch",
|
|
357
363
|
"opensearchserverless",
|
|
358
|
-
"opsworks",
|
|
359
|
-
"opsworkscm",
|
|
360
364
|
"organizations",
|
|
361
365
|
"osis",
|
|
362
366
|
"outposts",
|
|
@@ -407,11 +411,13 @@ ServiceName = Literal[
|
|
|
407
411
|
"route53domains",
|
|
408
412
|
"route53profiles",
|
|
409
413
|
"route53resolver",
|
|
414
|
+
"rtbfabric",
|
|
410
415
|
"rum",
|
|
411
416
|
"s3",
|
|
412
417
|
"s3control",
|
|
413
418
|
"s3outposts",
|
|
414
419
|
"s3tables",
|
|
420
|
+
"s3vectors",
|
|
415
421
|
"sagemaker",
|
|
416
422
|
"sagemaker-a2i-runtime",
|
|
417
423
|
"sagemaker-edge",
|
|
@@ -437,7 +443,6 @@ ServiceName = Literal[
|
|
|
437
443
|
"shield",
|
|
438
444
|
"signer",
|
|
439
445
|
"simspaceweaver",
|
|
440
|
-
"sms",
|
|
441
446
|
"snow-device-management",
|
|
442
447
|
"snowball",
|
|
443
448
|
"sns",
|
|
@@ -488,16 +493,7 @@ ServiceName = Literal[
|
|
|
488
493
|
"xray",
|
|
489
494
|
]
|
|
490
495
|
ResourceServiceName = Literal[
|
|
491
|
-
"cloudformation",
|
|
492
|
-
"cloudwatch",
|
|
493
|
-
"dynamodb",
|
|
494
|
-
"ec2",
|
|
495
|
-
"glacier",
|
|
496
|
-
"iam",
|
|
497
|
-
"opsworks",
|
|
498
|
-
"s3",
|
|
499
|
-
"sns",
|
|
500
|
-
"sqs",
|
|
496
|
+
"cloudformation", "cloudwatch", "dynamodb", "ec2", "glacier", "iam", "s3", "sns", "sqs"
|
|
501
497
|
]
|
|
502
498
|
PaginatorName = Literal["describe_stream", "list_shards", "list_stream_consumers", "list_streams"]
|
|
503
499
|
WaiterName = Literal["stream_exists", "stream_not_exists"]
|
|
@@ -515,6 +511,7 @@ RegionName = Literal[
|
|
|
515
511
|
"ap-southeast-3",
|
|
516
512
|
"ap-southeast-4",
|
|
517
513
|
"ap-southeast-5",
|
|
514
|
+
"ap-southeast-6",
|
|
518
515
|
"ap-southeast-7",
|
|
519
516
|
"ca-central-1",
|
|
520
517
|
"ca-west-1",
|
types_boto3_kinesis/type_defs.py
CHANGED
|
@@ -134,6 +134,7 @@ __all__ = (
|
|
|
134
134
|
"TagTypeDef",
|
|
135
135
|
"TimestampTypeDef",
|
|
136
136
|
"UntagResourceInputTypeDef",
|
|
137
|
+
"UpdateMaxRecordSizeInputTypeDef",
|
|
137
138
|
"UpdateShardCountInputTypeDef",
|
|
138
139
|
"UpdateShardCountOutputTypeDef",
|
|
139
140
|
"UpdateStreamModeInputTypeDef",
|
|
@@ -401,6 +402,11 @@ class UntagResourceInputTypeDef(TypedDict):
|
|
|
401
402
|
ResourceARN: str
|
|
402
403
|
|
|
403
404
|
|
|
405
|
+
class UpdateMaxRecordSizeInputTypeDef(TypedDict):
|
|
406
|
+
MaxRecordSizeInKiB: int
|
|
407
|
+
StreamARN: NotRequired[str]
|
|
408
|
+
|
|
409
|
+
|
|
404
410
|
class UpdateShardCountInputTypeDef(TypedDict):
|
|
405
411
|
TargetShardCount: int
|
|
406
412
|
ScalingType: Literal["UNIFORM_SCALING"]
|
|
@@ -434,6 +440,7 @@ class CreateStreamInputTypeDef(TypedDict):
|
|
|
434
440
|
ShardCount: NotRequired[int]
|
|
435
441
|
StreamModeDetails: NotRequired[StreamModeDetailsTypeDef]
|
|
436
442
|
Tags: NotRequired[Mapping[str, str]]
|
|
443
|
+
MaxRecordSizeInKiB: NotRequired[int]
|
|
437
444
|
|
|
438
445
|
|
|
439
446
|
class StreamSummaryTypeDef(TypedDict):
|
|
@@ -549,6 +556,7 @@ class StreamDescriptionSummaryTypeDef(TypedDict):
|
|
|
549
556
|
EncryptionType: NotRequired[EncryptionTypeType]
|
|
550
557
|
KeyId: NotRequired[str]
|
|
551
558
|
ConsumerCount: NotRequired[int]
|
|
559
|
+
MaxRecordSizeInKiB: NotRequired[int]
|
|
552
560
|
|
|
553
561
|
|
|
554
562
|
class GetShardIteratorInputTypeDef(TypedDict):
|
|
@@ -133,6 +133,7 @@ __all__ = (
|
|
|
133
133
|
"TagTypeDef",
|
|
134
134
|
"TimestampTypeDef",
|
|
135
135
|
"UntagResourceInputTypeDef",
|
|
136
|
+
"UpdateMaxRecordSizeInputTypeDef",
|
|
136
137
|
"UpdateShardCountInputTypeDef",
|
|
137
138
|
"UpdateShardCountOutputTypeDef",
|
|
138
139
|
"UpdateStreamModeInputTypeDef",
|
|
@@ -351,6 +352,10 @@ class UntagResourceInputTypeDef(TypedDict):
|
|
|
351
352
|
TagKeys: Sequence[str]
|
|
352
353
|
ResourceARN: str
|
|
353
354
|
|
|
355
|
+
class UpdateMaxRecordSizeInputTypeDef(TypedDict):
|
|
356
|
+
MaxRecordSizeInKiB: int
|
|
357
|
+
StreamARN: NotRequired[str]
|
|
358
|
+
|
|
354
359
|
class UpdateShardCountInputTypeDef(TypedDict):
|
|
355
360
|
TargetShardCount: int
|
|
356
361
|
ScalingType: Literal["UNIFORM_SCALING"]
|
|
@@ -380,6 +385,7 @@ class CreateStreamInputTypeDef(TypedDict):
|
|
|
380
385
|
ShardCount: NotRequired[int]
|
|
381
386
|
StreamModeDetails: NotRequired[StreamModeDetailsTypeDef]
|
|
382
387
|
Tags: NotRequired[Mapping[str, str]]
|
|
388
|
+
MaxRecordSizeInKiB: NotRequired[int]
|
|
383
389
|
|
|
384
390
|
class StreamSummaryTypeDef(TypedDict):
|
|
385
391
|
StreamName: str
|
|
@@ -478,6 +484,7 @@ class StreamDescriptionSummaryTypeDef(TypedDict):
|
|
|
478
484
|
EncryptionType: NotRequired[EncryptionTypeType]
|
|
479
485
|
KeyId: NotRequired[str]
|
|
480
486
|
ConsumerCount: NotRequired[int]
|
|
487
|
+
MaxRecordSizeInKiB: NotRequired[int]
|
|
481
488
|
|
|
482
489
|
class GetShardIteratorInputTypeDef(TypedDict):
|
|
483
490
|
ShardId: str
|
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.60
|
|
4
|
+
Summary: Type annotations for boto3 Kinesis 1.40.60 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.60](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/),
|
|
@@ -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.60' 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=XZDAC1vyFLDDOmJTtIOQ9rrZqgvwIMyc_fPjuDwxcFg,985
|
|
4
|
+
types_boto3_kinesis/client.py,sha256=n0XGCwHN2mpg9dCVXvAeietSAT6Qhx3mq2ZW1KqD3_w,27576
|
|
5
|
+
types_boto3_kinesis/client.pyi,sha256=wtMontQ3Bjbc8wGYR88LmToAI1N0FqceI2piqB9fseQ,27573
|
|
6
|
+
types_boto3_kinesis/literals.py,sha256=ljtVsJDYj1MUlfpD16qNVjxjgb77N-0K_WJgEFcTixw,11352
|
|
7
|
+
types_boto3_kinesis/literals.pyi,sha256=MCxyN2W83YD46cL3rZZtEXYap9rfZNWqBM23zWQE-xY,11350
|
|
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=BeoYLBq6xneNURfyxxvTz6E0_BR6uizmGLcME_8bCEw,19710
|
|
12
|
+
types_boto3_kinesis/type_defs.pyi,sha256=r-Pa2fk8Jqwf7nrhmEfQ7xiel38IyYJ2yqVai78_6Qo,19617
|
|
13
|
+
types_boto3_kinesis/version.py,sha256=NzXluJrrNARU_IqVC98fZ7B1YuUJkewLTY2LI9mZCDQ,93
|
|
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.60.dist-info/licenses/LICENSE,sha256=4jNgB8jJbXtUVJkeygwhUQi--6lAG8DIisfE-h_RiUU,1070
|
|
17
|
+
types_boto3_kinesis-1.40.60.dist-info/METADATA,sha256=8fFQFULNQSyN7KXH6MymvLgLOPUDaN-CPup69B-HBvY,15982
|
|
18
|
+
types_boto3_kinesis-1.40.60.dist-info/WHEEL,sha256=_zCd3N1l69ArxyTb8rzEoP9TpbYXkqRFSNOD5OuxnTs,91
|
|
19
|
+
types_boto3_kinesis-1.40.60.dist-info/top_level.txt,sha256=QOBfHpTRND8MxYawOcHI9oTlGuMPIGXZybD8VDr23WE,20
|
|
20
|
+
types_boto3_kinesis-1.40.60.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=2nbB8H_FZME6QYmC_w2EBJBHO_zIt4DS3cvXYbUg-1c,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=lzSvewkOq7RFnwF6Xxy6LhfcP_ZWB6KxGF4Ge83ms10,11243
|
|
7
|
-
types_boto3_kinesis/literals.pyi,sha256=93RwzAeZNYAI7nRUaDiI9YlReRq5Qfnd0zuchvvgNlI,11241
|
|
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=2zoG4eEWPRyRE1KcrQlbWADhaM3qPJ9AE2mKAu218VA,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.39.0.dist-info/licenses/LICENSE,sha256=4jNgB8jJbXtUVJkeygwhUQi--6lAG8DIisfE-h_RiUU,1070
|
|
17
|
-
types_boto3_kinesis-1.39.0.dist-info/METADATA,sha256=zooIeOoXpP9arLLi9qqkci3RmCtCDAfhp2e45Rbv9Rc,15978
|
|
18
|
-
types_boto3_kinesis-1.39.0.dist-info/WHEEL,sha256=_zCd3N1l69ArxyTb8rzEoP9TpbYXkqRFSNOD5OuxnTs,91
|
|
19
|
-
types_boto3_kinesis-1.39.0.dist-info/top_level.txt,sha256=QOBfHpTRND8MxYawOcHI9oTlGuMPIGXZybD8VDr23WE,20
|
|
20
|
-
types_boto3_kinesis-1.39.0.dist-info/RECORD,,
|
|
File without changes
|
{types_boto3_kinesis-1.39.0.dist-info → types_boto3_kinesis-1.40.60.dist-info}/licenses/LICENSE
RENAMED
|
File without changes
|
{types_boto3_kinesis-1.39.0.dist-info → types_boto3_kinesis-1.40.60.dist-info}/top_level.txt
RENAMED
|
File without changes
|