mypy-boto3-kinesis 1.40.60__py3-none-any.whl → 1.41.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.
- mypy_boto3_kinesis/__main__.py +4 -4
- mypy_boto3_kinesis/client.py +52 -22
- mypy_boto3_kinesis/client.pyi +52 -22
- mypy_boto3_kinesis/literals.py +9 -7
- mypy_boto3_kinesis/literals.pyi +9 -7
- mypy_boto3_kinesis/type_defs.py +95 -44
- mypy_boto3_kinesis/type_defs.pyi +85 -42
- mypy_boto3_kinesis/version.py +1 -1
- {mypy_boto3_kinesis-1.40.60.dist-info → mypy_boto3_kinesis-1.41.0.dist-info}/METADATA +11 -25
- mypy_boto3_kinesis-1.41.0.dist-info/RECORD +20 -0
- mypy_boto3_kinesis-1.40.60.dist-info/RECORD +0 -20
- {mypy_boto3_kinesis-1.40.60.dist-info → mypy_boto3_kinesis-1.41.0.dist-info}/WHEEL +0 -0
- {mypy_boto3_kinesis-1.40.60.dist-info → mypy_boto3_kinesis-1.41.0.dist-info}/licenses/LICENSE +0 -0
- {mypy_boto3_kinesis-1.40.60.dist-info → mypy_boto3_kinesis-1.41.0.dist-info}/top_level.txt +0 -0
mypy_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.41.0\n"
|
|
16
|
+
"Version: 1.41.0\n"
|
|
17
|
+
"Builder version: 8.12.0\n"
|
|
18
18
|
"Docs: https://youtype.github.io/boto3_stubs_docs/mypy_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.41.0\n")
|
|
30
30
|
|
|
31
31
|
|
|
32
32
|
def main() -> None:
|
mypy_boto3_kinesis/client.py
CHANGED
|
@@ -19,6 +19,7 @@ Usage::
|
|
|
19
19
|
from __future__ import annotations
|
|
20
20
|
|
|
21
21
|
import sys
|
|
22
|
+
from collections.abc import Mapping
|
|
22
23
|
from typing import Any, overload
|
|
23
24
|
|
|
24
25
|
from botocore.client import BaseClient, ClientMeta
|
|
@@ -38,6 +39,7 @@ from .type_defs import (
|
|
|
38
39
|
DeleteResourcePolicyInputTypeDef,
|
|
39
40
|
DeleteStreamInputTypeDef,
|
|
40
41
|
DeregisterStreamConsumerInputTypeDef,
|
|
42
|
+
DescribeAccountSettingsOutputTypeDef,
|
|
41
43
|
DescribeLimitsOutputTypeDef,
|
|
42
44
|
DescribeStreamConsumerInputTypeDef,
|
|
43
45
|
DescribeStreamConsumerOutputTypeDef,
|
|
@@ -82,18 +84,17 @@ from .type_defs import (
|
|
|
82
84
|
SubscribeToShardOutputTypeDef,
|
|
83
85
|
TagResourceInputTypeDef,
|
|
84
86
|
UntagResourceInputTypeDef,
|
|
87
|
+
UpdateAccountSettingsInputTypeDef,
|
|
88
|
+
UpdateAccountSettingsOutputTypeDef,
|
|
85
89
|
UpdateMaxRecordSizeInputTypeDef,
|
|
86
90
|
UpdateShardCountInputTypeDef,
|
|
87
91
|
UpdateShardCountOutputTypeDef,
|
|
88
92
|
UpdateStreamModeInputTypeDef,
|
|
93
|
+
UpdateStreamWarmThroughputInputTypeDef,
|
|
94
|
+
UpdateStreamWarmThroughputOutputTypeDef,
|
|
89
95
|
)
|
|
90
96
|
from .waiter import StreamExistsWaiter, StreamNotExistsWaiter
|
|
91
97
|
|
|
92
|
-
if sys.version_info >= (3, 9):
|
|
93
|
-
from builtins import type as Type
|
|
94
|
-
from collections.abc import Mapping
|
|
95
|
-
else:
|
|
96
|
-
from typing import Mapping, Type
|
|
97
98
|
if sys.version_info >= (3, 12):
|
|
98
99
|
from typing import Literal, Unpack
|
|
99
100
|
else:
|
|
@@ -104,23 +105,23 @@ __all__ = ("KinesisClient",)
|
|
|
104
105
|
|
|
105
106
|
|
|
106
107
|
class Exceptions(BaseClientExceptions):
|
|
107
|
-
AccessDeniedException:
|
|
108
|
-
ClientError:
|
|
109
|
-
ExpiredIteratorException:
|
|
110
|
-
ExpiredNextTokenException:
|
|
111
|
-
InternalFailureException:
|
|
112
|
-
InvalidArgumentException:
|
|
113
|
-
KMSAccessDeniedException:
|
|
114
|
-
KMSDisabledException:
|
|
115
|
-
KMSInvalidStateException:
|
|
116
|
-
KMSNotFoundException:
|
|
117
|
-
KMSOptInRequired:
|
|
118
|
-
KMSThrottlingException:
|
|
119
|
-
LimitExceededException:
|
|
120
|
-
ProvisionedThroughputExceededException:
|
|
121
|
-
ResourceInUseException:
|
|
122
|
-
ResourceNotFoundException:
|
|
123
|
-
ValidationException:
|
|
108
|
+
AccessDeniedException: type[BotocoreClientError]
|
|
109
|
+
ClientError: type[BotocoreClientError]
|
|
110
|
+
ExpiredIteratorException: type[BotocoreClientError]
|
|
111
|
+
ExpiredNextTokenException: type[BotocoreClientError]
|
|
112
|
+
InternalFailureException: type[BotocoreClientError]
|
|
113
|
+
InvalidArgumentException: type[BotocoreClientError]
|
|
114
|
+
KMSAccessDeniedException: type[BotocoreClientError]
|
|
115
|
+
KMSDisabledException: type[BotocoreClientError]
|
|
116
|
+
KMSInvalidStateException: type[BotocoreClientError]
|
|
117
|
+
KMSNotFoundException: type[BotocoreClientError]
|
|
118
|
+
KMSOptInRequired: type[BotocoreClientError]
|
|
119
|
+
KMSThrottlingException: type[BotocoreClientError]
|
|
120
|
+
LimitExceededException: type[BotocoreClientError]
|
|
121
|
+
ProvisionedThroughputExceededException: type[BotocoreClientError]
|
|
122
|
+
ResourceInUseException: type[BotocoreClientError]
|
|
123
|
+
ResourceNotFoundException: type[BotocoreClientError]
|
|
124
|
+
ValidationException: type[BotocoreClientError]
|
|
124
125
|
|
|
125
126
|
|
|
126
127
|
class KinesisClient(BaseClient):
|
|
@@ -219,6 +220,14 @@ class KinesisClient(BaseClient):
|
|
|
219
220
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_kinesis/client/#deregister_stream_consumer)
|
|
220
221
|
"""
|
|
221
222
|
|
|
223
|
+
def describe_account_settings(self) -> DescribeAccountSettingsOutputTypeDef:
|
|
224
|
+
"""
|
|
225
|
+
Describes the account-level settings for Amazon Kinesis Data Streams.
|
|
226
|
+
|
|
227
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/kinesis/client/describe_account_settings.html)
|
|
228
|
+
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_kinesis/client/#describe_account_settings)
|
|
229
|
+
"""
|
|
230
|
+
|
|
222
231
|
def describe_limits(self) -> DescribeLimitsOutputTypeDef:
|
|
223
232
|
"""
|
|
224
233
|
Describes the shard limits and usage for the account.
|
|
@@ -485,6 +494,16 @@ class KinesisClient(BaseClient):
|
|
|
485
494
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_kinesis/client/#untag_resource)
|
|
486
495
|
"""
|
|
487
496
|
|
|
497
|
+
def update_account_settings(
|
|
498
|
+
self, **kwargs: Unpack[UpdateAccountSettingsInputTypeDef]
|
|
499
|
+
) -> UpdateAccountSettingsOutputTypeDef:
|
|
500
|
+
"""
|
|
501
|
+
Updates the account-level settings for Amazon Kinesis Data Streams.
|
|
502
|
+
|
|
503
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/kinesis/client/update_account_settings.html)
|
|
504
|
+
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_kinesis/client/#update_account_settings)
|
|
505
|
+
"""
|
|
506
|
+
|
|
488
507
|
def update_max_record_size(
|
|
489
508
|
self, **kwargs: Unpack[UpdateMaxRecordSizeInputTypeDef]
|
|
490
509
|
) -> EmptyResponseMetadataTypeDef:
|
|
@@ -517,6 +536,17 @@ class KinesisClient(BaseClient):
|
|
|
517
536
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_kinesis/client/#update_stream_mode)
|
|
518
537
|
"""
|
|
519
538
|
|
|
539
|
+
def update_stream_warm_throughput(
|
|
540
|
+
self, **kwargs: Unpack[UpdateStreamWarmThroughputInputTypeDef]
|
|
541
|
+
) -> UpdateStreamWarmThroughputOutputTypeDef:
|
|
542
|
+
"""
|
|
543
|
+
Updates the warm throughput configuration for the specified Amazon Kinesis Data
|
|
544
|
+
Streams on-demand data stream.
|
|
545
|
+
|
|
546
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/kinesis/client/update_stream_warm_throughput.html)
|
|
547
|
+
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_kinesis/client/#update_stream_warm_throughput)
|
|
548
|
+
"""
|
|
549
|
+
|
|
520
550
|
@overload # type: ignore[override]
|
|
521
551
|
def get_paginator( # type: ignore[override]
|
|
522
552
|
self, operation_name: Literal["describe_stream"]
|
mypy_boto3_kinesis/client.pyi
CHANGED
|
@@ -19,6 +19,7 @@ Usage::
|
|
|
19
19
|
from __future__ import annotations
|
|
20
20
|
|
|
21
21
|
import sys
|
|
22
|
+
from collections.abc import Mapping
|
|
22
23
|
from typing import Any, overload
|
|
23
24
|
|
|
24
25
|
from botocore.client import BaseClient, ClientMeta
|
|
@@ -38,6 +39,7 @@ from .type_defs import (
|
|
|
38
39
|
DeleteResourcePolicyInputTypeDef,
|
|
39
40
|
DeleteStreamInputTypeDef,
|
|
40
41
|
DeregisterStreamConsumerInputTypeDef,
|
|
42
|
+
DescribeAccountSettingsOutputTypeDef,
|
|
41
43
|
DescribeLimitsOutputTypeDef,
|
|
42
44
|
DescribeStreamConsumerInputTypeDef,
|
|
43
45
|
DescribeStreamConsumerOutputTypeDef,
|
|
@@ -82,18 +84,17 @@ from .type_defs import (
|
|
|
82
84
|
SubscribeToShardOutputTypeDef,
|
|
83
85
|
TagResourceInputTypeDef,
|
|
84
86
|
UntagResourceInputTypeDef,
|
|
87
|
+
UpdateAccountSettingsInputTypeDef,
|
|
88
|
+
UpdateAccountSettingsOutputTypeDef,
|
|
85
89
|
UpdateMaxRecordSizeInputTypeDef,
|
|
86
90
|
UpdateShardCountInputTypeDef,
|
|
87
91
|
UpdateShardCountOutputTypeDef,
|
|
88
92
|
UpdateStreamModeInputTypeDef,
|
|
93
|
+
UpdateStreamWarmThroughputInputTypeDef,
|
|
94
|
+
UpdateStreamWarmThroughputOutputTypeDef,
|
|
89
95
|
)
|
|
90
96
|
from .waiter import StreamExistsWaiter, StreamNotExistsWaiter
|
|
91
97
|
|
|
92
|
-
if sys.version_info >= (3, 9):
|
|
93
|
-
from builtins import type as Type
|
|
94
|
-
from collections.abc import Mapping
|
|
95
|
-
else:
|
|
96
|
-
from typing import Mapping, Type
|
|
97
98
|
if sys.version_info >= (3, 12):
|
|
98
99
|
from typing import Literal, Unpack
|
|
99
100
|
else:
|
|
@@ -102,23 +103,23 @@ else:
|
|
|
102
103
|
__all__ = ("KinesisClient",)
|
|
103
104
|
|
|
104
105
|
class Exceptions(BaseClientExceptions):
|
|
105
|
-
AccessDeniedException:
|
|
106
|
-
ClientError:
|
|
107
|
-
ExpiredIteratorException:
|
|
108
|
-
ExpiredNextTokenException:
|
|
109
|
-
InternalFailureException:
|
|
110
|
-
InvalidArgumentException:
|
|
111
|
-
KMSAccessDeniedException:
|
|
112
|
-
KMSDisabledException:
|
|
113
|
-
KMSInvalidStateException:
|
|
114
|
-
KMSNotFoundException:
|
|
115
|
-
KMSOptInRequired:
|
|
116
|
-
KMSThrottlingException:
|
|
117
|
-
LimitExceededException:
|
|
118
|
-
ProvisionedThroughputExceededException:
|
|
119
|
-
ResourceInUseException:
|
|
120
|
-
ResourceNotFoundException:
|
|
121
|
-
ValidationException:
|
|
106
|
+
AccessDeniedException: type[BotocoreClientError]
|
|
107
|
+
ClientError: type[BotocoreClientError]
|
|
108
|
+
ExpiredIteratorException: type[BotocoreClientError]
|
|
109
|
+
ExpiredNextTokenException: type[BotocoreClientError]
|
|
110
|
+
InternalFailureException: type[BotocoreClientError]
|
|
111
|
+
InvalidArgumentException: type[BotocoreClientError]
|
|
112
|
+
KMSAccessDeniedException: type[BotocoreClientError]
|
|
113
|
+
KMSDisabledException: type[BotocoreClientError]
|
|
114
|
+
KMSInvalidStateException: type[BotocoreClientError]
|
|
115
|
+
KMSNotFoundException: type[BotocoreClientError]
|
|
116
|
+
KMSOptInRequired: type[BotocoreClientError]
|
|
117
|
+
KMSThrottlingException: type[BotocoreClientError]
|
|
118
|
+
LimitExceededException: type[BotocoreClientError]
|
|
119
|
+
ProvisionedThroughputExceededException: type[BotocoreClientError]
|
|
120
|
+
ResourceInUseException: type[BotocoreClientError]
|
|
121
|
+
ResourceNotFoundException: type[BotocoreClientError]
|
|
122
|
+
ValidationException: type[BotocoreClientError]
|
|
122
123
|
|
|
123
124
|
class KinesisClient(BaseClient):
|
|
124
125
|
"""
|
|
@@ -216,6 +217,14 @@ class KinesisClient(BaseClient):
|
|
|
216
217
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_kinesis/client/#deregister_stream_consumer)
|
|
217
218
|
"""
|
|
218
219
|
|
|
220
|
+
def describe_account_settings(self) -> DescribeAccountSettingsOutputTypeDef:
|
|
221
|
+
"""
|
|
222
|
+
Describes the account-level settings for Amazon Kinesis Data Streams.
|
|
223
|
+
|
|
224
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/kinesis/client/describe_account_settings.html)
|
|
225
|
+
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_kinesis/client/#describe_account_settings)
|
|
226
|
+
"""
|
|
227
|
+
|
|
219
228
|
def describe_limits(self) -> DescribeLimitsOutputTypeDef:
|
|
220
229
|
"""
|
|
221
230
|
Describes the shard limits and usage for the account.
|
|
@@ -482,6 +491,16 @@ class KinesisClient(BaseClient):
|
|
|
482
491
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_kinesis/client/#untag_resource)
|
|
483
492
|
"""
|
|
484
493
|
|
|
494
|
+
def update_account_settings(
|
|
495
|
+
self, **kwargs: Unpack[UpdateAccountSettingsInputTypeDef]
|
|
496
|
+
) -> UpdateAccountSettingsOutputTypeDef:
|
|
497
|
+
"""
|
|
498
|
+
Updates the account-level settings for Amazon Kinesis Data Streams.
|
|
499
|
+
|
|
500
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/kinesis/client/update_account_settings.html)
|
|
501
|
+
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_kinesis/client/#update_account_settings)
|
|
502
|
+
"""
|
|
503
|
+
|
|
485
504
|
def update_max_record_size(
|
|
486
505
|
self, **kwargs: Unpack[UpdateMaxRecordSizeInputTypeDef]
|
|
487
506
|
) -> EmptyResponseMetadataTypeDef:
|
|
@@ -514,6 +533,17 @@ class KinesisClient(BaseClient):
|
|
|
514
533
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_kinesis/client/#update_stream_mode)
|
|
515
534
|
"""
|
|
516
535
|
|
|
536
|
+
def update_stream_warm_throughput(
|
|
537
|
+
self, **kwargs: Unpack[UpdateStreamWarmThroughputInputTypeDef]
|
|
538
|
+
) -> UpdateStreamWarmThroughputOutputTypeDef:
|
|
539
|
+
"""
|
|
540
|
+
Updates the warm throughput configuration for the specified Amazon Kinesis Data
|
|
541
|
+
Streams on-demand data stream.
|
|
542
|
+
|
|
543
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/kinesis/client/update_stream_warm_throughput.html)
|
|
544
|
+
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_kinesis/client/#update_stream_warm_throughput)
|
|
545
|
+
"""
|
|
546
|
+
|
|
517
547
|
@overload # type: ignore[override]
|
|
518
548
|
def get_paginator( # type: ignore[override]
|
|
519
549
|
self, operation_name: Literal["describe_stream"]
|
mypy_boto3_kinesis/literals.py
CHANGED
|
@@ -31,6 +31,8 @@ __all__ = (
|
|
|
31
31
|
"ListStreamConsumersPaginatorName",
|
|
32
32
|
"ListStreamsPaginatorName",
|
|
33
33
|
"MetricsNameType",
|
|
34
|
+
"MinimumThroughputBillingCommitmentInputStatusType",
|
|
35
|
+
"MinimumThroughputBillingCommitmentOutputStatusType",
|
|
34
36
|
"PaginatorName",
|
|
35
37
|
"RegionName",
|
|
36
38
|
"ResourceServiceName",
|
|
@@ -62,6 +64,10 @@ MetricsNameType = Literal[
|
|
|
62
64
|
"ReadProvisionedThroughputExceeded",
|
|
63
65
|
"WriteProvisionedThroughputExceeded",
|
|
64
66
|
]
|
|
67
|
+
MinimumThroughputBillingCommitmentInputStatusType = Literal["DISABLED", "ENABLED"]
|
|
68
|
+
MinimumThroughputBillingCommitmentOutputStatusType = Literal[
|
|
69
|
+
"DISABLED", "ENABLED", "ENABLED_UNTIL_EARLIEST_ALLOWED_END"
|
|
70
|
+
]
|
|
65
71
|
ScalingTypeType = Literal["UNIFORM_SCALING"]
|
|
66
72
|
ShardFilterTypeType = Literal[
|
|
67
73
|
"AFTER_SHARD_ID",
|
|
@@ -105,7 +111,6 @@ ServiceName = Literal[
|
|
|
105
111
|
"apprunner",
|
|
106
112
|
"appstream",
|
|
107
113
|
"appsync",
|
|
108
|
-
"apptest",
|
|
109
114
|
"arc-region-switch",
|
|
110
115
|
"arc-zonal-shift",
|
|
111
116
|
"artifact",
|
|
@@ -273,7 +278,6 @@ ServiceName = Literal[
|
|
|
273
278
|
"iotdeviceadvisor",
|
|
274
279
|
"iotevents",
|
|
275
280
|
"iotevents-data",
|
|
276
|
-
"iotfleethub",
|
|
277
281
|
"iotfleetwise",
|
|
278
282
|
"iotsecuretunneling",
|
|
279
283
|
"iotsitewise",
|
|
@@ -312,8 +316,6 @@ ServiceName = Literal[
|
|
|
312
316
|
"location",
|
|
313
317
|
"logs",
|
|
314
318
|
"lookoutequipment",
|
|
315
|
-
"lookoutmetrics",
|
|
316
|
-
"lookoutvision",
|
|
317
319
|
"m2",
|
|
318
320
|
"machinelearning",
|
|
319
321
|
"macie2",
|
|
@@ -348,6 +350,7 @@ ServiceName = Literal[
|
|
|
348
350
|
"mq",
|
|
349
351
|
"mturk",
|
|
350
352
|
"mwaa",
|
|
353
|
+
"mwaa-serverless",
|
|
351
354
|
"neptune",
|
|
352
355
|
"neptune-graph",
|
|
353
356
|
"neptunedata",
|
|
@@ -367,6 +370,7 @@ ServiceName = Literal[
|
|
|
367
370
|
"osis",
|
|
368
371
|
"outposts",
|
|
369
372
|
"panorama",
|
|
373
|
+
"partnercentral-channel",
|
|
370
374
|
"partnercentral-selling",
|
|
371
375
|
"payment-cryptography",
|
|
372
376
|
"payment-cryptography-data",
|
|
@@ -388,8 +392,6 @@ ServiceName = Literal[
|
|
|
388
392
|
"qapps",
|
|
389
393
|
"qbusiness",
|
|
390
394
|
"qconnect",
|
|
391
|
-
"qldb",
|
|
392
|
-
"qldb-session",
|
|
393
395
|
"quicksight",
|
|
394
396
|
"ram",
|
|
395
397
|
"rbin",
|
|
@@ -404,7 +406,6 @@ ServiceName = Literal[
|
|
|
404
406
|
"resource-explorer-2",
|
|
405
407
|
"resource-groups",
|
|
406
408
|
"resourcegroupstaggingapi",
|
|
407
|
-
"robomaker",
|
|
408
409
|
"rolesanywhere",
|
|
409
410
|
"route53",
|
|
410
411
|
"route53-recovery-cluster",
|
|
@@ -444,6 +445,7 @@ ServiceName = Literal[
|
|
|
444
445
|
"sesv2",
|
|
445
446
|
"shield",
|
|
446
447
|
"signer",
|
|
448
|
+
"signin",
|
|
447
449
|
"simspaceweaver",
|
|
448
450
|
"snow-device-management",
|
|
449
451
|
"snowball",
|
mypy_boto3_kinesis/literals.pyi
CHANGED
|
@@ -30,6 +30,8 @@ __all__ = (
|
|
|
30
30
|
"ListStreamConsumersPaginatorName",
|
|
31
31
|
"ListStreamsPaginatorName",
|
|
32
32
|
"MetricsNameType",
|
|
33
|
+
"MinimumThroughputBillingCommitmentInputStatusType",
|
|
34
|
+
"MinimumThroughputBillingCommitmentOutputStatusType",
|
|
33
35
|
"PaginatorName",
|
|
34
36
|
"RegionName",
|
|
35
37
|
"ResourceServiceName",
|
|
@@ -60,6 +62,10 @@ MetricsNameType = Literal[
|
|
|
60
62
|
"ReadProvisionedThroughputExceeded",
|
|
61
63
|
"WriteProvisionedThroughputExceeded",
|
|
62
64
|
]
|
|
65
|
+
MinimumThroughputBillingCommitmentInputStatusType = Literal["DISABLED", "ENABLED"]
|
|
66
|
+
MinimumThroughputBillingCommitmentOutputStatusType = Literal[
|
|
67
|
+
"DISABLED", "ENABLED", "ENABLED_UNTIL_EARLIEST_ALLOWED_END"
|
|
68
|
+
]
|
|
63
69
|
ScalingTypeType = Literal["UNIFORM_SCALING"]
|
|
64
70
|
ShardFilterTypeType = Literal[
|
|
65
71
|
"AFTER_SHARD_ID",
|
|
@@ -103,7 +109,6 @@ ServiceName = Literal[
|
|
|
103
109
|
"apprunner",
|
|
104
110
|
"appstream",
|
|
105
111
|
"appsync",
|
|
106
|
-
"apptest",
|
|
107
112
|
"arc-region-switch",
|
|
108
113
|
"arc-zonal-shift",
|
|
109
114
|
"artifact",
|
|
@@ -271,7 +276,6 @@ ServiceName = Literal[
|
|
|
271
276
|
"iotdeviceadvisor",
|
|
272
277
|
"iotevents",
|
|
273
278
|
"iotevents-data",
|
|
274
|
-
"iotfleethub",
|
|
275
279
|
"iotfleetwise",
|
|
276
280
|
"iotsecuretunneling",
|
|
277
281
|
"iotsitewise",
|
|
@@ -310,8 +314,6 @@ ServiceName = Literal[
|
|
|
310
314
|
"location",
|
|
311
315
|
"logs",
|
|
312
316
|
"lookoutequipment",
|
|
313
|
-
"lookoutmetrics",
|
|
314
|
-
"lookoutvision",
|
|
315
317
|
"m2",
|
|
316
318
|
"machinelearning",
|
|
317
319
|
"macie2",
|
|
@@ -346,6 +348,7 @@ ServiceName = Literal[
|
|
|
346
348
|
"mq",
|
|
347
349
|
"mturk",
|
|
348
350
|
"mwaa",
|
|
351
|
+
"mwaa-serverless",
|
|
349
352
|
"neptune",
|
|
350
353
|
"neptune-graph",
|
|
351
354
|
"neptunedata",
|
|
@@ -365,6 +368,7 @@ ServiceName = Literal[
|
|
|
365
368
|
"osis",
|
|
366
369
|
"outposts",
|
|
367
370
|
"panorama",
|
|
371
|
+
"partnercentral-channel",
|
|
368
372
|
"partnercentral-selling",
|
|
369
373
|
"payment-cryptography",
|
|
370
374
|
"payment-cryptography-data",
|
|
@@ -386,8 +390,6 @@ ServiceName = Literal[
|
|
|
386
390
|
"qapps",
|
|
387
391
|
"qbusiness",
|
|
388
392
|
"qconnect",
|
|
389
|
-
"qldb",
|
|
390
|
-
"qldb-session",
|
|
391
393
|
"quicksight",
|
|
392
394
|
"ram",
|
|
393
395
|
"rbin",
|
|
@@ -402,7 +404,6 @@ ServiceName = Literal[
|
|
|
402
404
|
"resource-explorer-2",
|
|
403
405
|
"resource-groups",
|
|
404
406
|
"resourcegroupstaggingapi",
|
|
405
|
-
"robomaker",
|
|
406
407
|
"rolesanywhere",
|
|
407
408
|
"route53",
|
|
408
409
|
"route53-recovery-cluster",
|
|
@@ -442,6 +443,7 @@ ServiceName = Literal[
|
|
|
442
443
|
"sesv2",
|
|
443
444
|
"shield",
|
|
444
445
|
"signer",
|
|
446
|
+
"signin",
|
|
445
447
|
"simspaceweaver",
|
|
446
448
|
"snow-device-management",
|
|
447
449
|
"snowball",
|
mypy_boto3_kinesis/type_defs.py
CHANGED
|
@@ -17,6 +17,7 @@ Usage::
|
|
|
17
17
|
from __future__ import annotations
|
|
18
18
|
|
|
19
19
|
import sys
|
|
20
|
+
from collections.abc import Mapping, Sequence
|
|
20
21
|
from datetime import datetime
|
|
21
22
|
from typing import IO, Any, Union
|
|
22
23
|
|
|
@@ -27,18 +28,14 @@ from .literals import (
|
|
|
27
28
|
ConsumerStatusType,
|
|
28
29
|
EncryptionTypeType,
|
|
29
30
|
MetricsNameType,
|
|
31
|
+
MinimumThroughputBillingCommitmentInputStatusType,
|
|
32
|
+
MinimumThroughputBillingCommitmentOutputStatusType,
|
|
30
33
|
ShardFilterTypeType,
|
|
31
34
|
ShardIteratorTypeType,
|
|
32
35
|
StreamModeType,
|
|
33
36
|
StreamStatusType,
|
|
34
37
|
)
|
|
35
38
|
|
|
36
|
-
if sys.version_info >= (3, 9):
|
|
37
|
-
from builtins import dict as Dict
|
|
38
|
-
from builtins import list as List
|
|
39
|
-
from collections.abc import Mapping, Sequence
|
|
40
|
-
else:
|
|
41
|
-
from typing import Dict, List, Mapping, Sequence
|
|
42
39
|
if sys.version_info >= (3, 12):
|
|
43
40
|
from typing import Literal, NotRequired, TypedDict
|
|
44
41
|
else:
|
|
@@ -56,6 +53,7 @@ __all__ = (
|
|
|
56
53
|
"DeleteResourcePolicyInputTypeDef",
|
|
57
54
|
"DeleteStreamInputTypeDef",
|
|
58
55
|
"DeregisterStreamConsumerInputTypeDef",
|
|
56
|
+
"DescribeAccountSettingsOutputTypeDef",
|
|
59
57
|
"DescribeLimitsOutputTypeDef",
|
|
60
58
|
"DescribeStreamConsumerInputTypeDef",
|
|
61
59
|
"DescribeStreamConsumerOutputTypeDef",
|
|
@@ -100,6 +98,8 @@ __all__ = (
|
|
|
100
98
|
"ListTagsForStreamInputTypeDef",
|
|
101
99
|
"ListTagsForStreamOutputTypeDef",
|
|
102
100
|
"MergeShardsInputTypeDef",
|
|
101
|
+
"MinimumThroughputBillingCommitmentInputTypeDef",
|
|
102
|
+
"MinimumThroughputBillingCommitmentOutputTypeDef",
|
|
103
103
|
"PaginatorConfigTypeDef",
|
|
104
104
|
"PutRecordInputTypeDef",
|
|
105
105
|
"PutRecordOutputTypeDef",
|
|
@@ -134,11 +134,16 @@ __all__ = (
|
|
|
134
134
|
"TagTypeDef",
|
|
135
135
|
"TimestampTypeDef",
|
|
136
136
|
"UntagResourceInputTypeDef",
|
|
137
|
+
"UpdateAccountSettingsInputTypeDef",
|
|
138
|
+
"UpdateAccountSettingsOutputTypeDef",
|
|
137
139
|
"UpdateMaxRecordSizeInputTypeDef",
|
|
138
140
|
"UpdateShardCountInputTypeDef",
|
|
139
141
|
"UpdateShardCountOutputTypeDef",
|
|
140
142
|
"UpdateStreamModeInputTypeDef",
|
|
143
|
+
"UpdateStreamWarmThroughputInputTypeDef",
|
|
144
|
+
"UpdateStreamWarmThroughputOutputTypeDef",
|
|
141
145
|
"WaiterConfigTypeDef",
|
|
146
|
+
"WarmThroughputObjectTypeDef",
|
|
142
147
|
)
|
|
143
148
|
|
|
144
149
|
|
|
@@ -197,10 +202,17 @@ class DeregisterStreamConsumerInputTypeDef(TypedDict):
|
|
|
197
202
|
ConsumerARN: NotRequired[str]
|
|
198
203
|
|
|
199
204
|
|
|
205
|
+
class MinimumThroughputBillingCommitmentOutputTypeDef(TypedDict):
|
|
206
|
+
Status: MinimumThroughputBillingCommitmentOutputStatusType
|
|
207
|
+
StartedAt: NotRequired[datetime]
|
|
208
|
+
EndedAt: NotRequired[datetime]
|
|
209
|
+
EarliestAllowedEndAt: NotRequired[datetime]
|
|
210
|
+
|
|
211
|
+
|
|
200
212
|
class ResponseMetadataTypeDef(TypedDict):
|
|
201
213
|
RequestId: str
|
|
202
214
|
HTTPStatusCode: int
|
|
203
|
-
HTTPHeaders:
|
|
215
|
+
HTTPHeaders: dict[str, str]
|
|
204
216
|
RetryAttempts: int
|
|
205
217
|
HostId: NotRequired[str]
|
|
206
218
|
|
|
@@ -247,7 +259,7 @@ class EnableEnhancedMonitoringInputTypeDef(TypedDict):
|
|
|
247
259
|
|
|
248
260
|
|
|
249
261
|
class EnhancedMetricsTypeDef(TypedDict):
|
|
250
|
-
ShardLevelMetrics: NotRequired[
|
|
262
|
+
ShardLevelMetrics: NotRequired[list[MetricsNameType]]
|
|
251
263
|
|
|
252
264
|
|
|
253
265
|
class GetRecordsInputTypeDef(TypedDict):
|
|
@@ -334,6 +346,10 @@ class MergeShardsInputTypeDef(TypedDict):
|
|
|
334
346
|
StreamARN: NotRequired[str]
|
|
335
347
|
|
|
336
348
|
|
|
349
|
+
class MinimumThroughputBillingCommitmentInputTypeDef(TypedDict):
|
|
350
|
+
Status: MinimumThroughputBillingCommitmentInputStatusType
|
|
351
|
+
|
|
352
|
+
|
|
337
353
|
class PutRecordsResultEntryTypeDef(TypedDict):
|
|
338
354
|
SequenceNumber: NotRequired[str]
|
|
339
355
|
ShardId: NotRequired[str]
|
|
@@ -392,6 +408,11 @@ class StopStreamEncryptionInputTypeDef(TypedDict):
|
|
|
392
408
|
StreamARN: NotRequired[str]
|
|
393
409
|
|
|
394
410
|
|
|
411
|
+
class WarmThroughputObjectTypeDef(TypedDict):
|
|
412
|
+
TargetMiBps: NotRequired[int]
|
|
413
|
+
CurrentMiBps: NotRequired[int]
|
|
414
|
+
|
|
415
|
+
|
|
395
416
|
class TagResourceInputTypeDef(TypedDict):
|
|
396
417
|
Tags: Mapping[str, str]
|
|
397
418
|
ResourceARN: str
|
|
@@ -414,6 +435,12 @@ class UpdateShardCountInputTypeDef(TypedDict):
|
|
|
414
435
|
StreamARN: NotRequired[str]
|
|
415
436
|
|
|
416
437
|
|
|
438
|
+
class UpdateStreamWarmThroughputInputTypeDef(TypedDict):
|
|
439
|
+
WarmThroughputMiBps: int
|
|
440
|
+
StreamARN: NotRequired[str]
|
|
441
|
+
StreamName: NotRequired[str]
|
|
442
|
+
|
|
443
|
+
|
|
417
444
|
class PutRecordInputTypeDef(TypedDict):
|
|
418
445
|
Data: BlobTypeDef
|
|
419
446
|
PartitionKey: str
|
|
@@ -431,7 +458,7 @@ class PutRecordsRequestEntryTypeDef(TypedDict):
|
|
|
431
458
|
|
|
432
459
|
class ChildShardTypeDef(TypedDict):
|
|
433
460
|
ShardId: str
|
|
434
|
-
ParentShards:
|
|
461
|
+
ParentShards: list[str]
|
|
435
462
|
HashKeyRange: HashKeyRangeTypeDef
|
|
436
463
|
|
|
437
464
|
|
|
@@ -440,6 +467,7 @@ class CreateStreamInputTypeDef(TypedDict):
|
|
|
440
467
|
ShardCount: NotRequired[int]
|
|
441
468
|
StreamModeDetails: NotRequired[StreamModeDetailsTypeDef]
|
|
442
469
|
Tags: NotRequired[Mapping[str, str]]
|
|
470
|
+
WarmThroughputMiBps: NotRequired[int]
|
|
443
471
|
MaxRecordSizeInKiB: NotRequired[int]
|
|
444
472
|
|
|
445
473
|
|
|
@@ -454,6 +482,12 @@ class StreamSummaryTypeDef(TypedDict):
|
|
|
454
482
|
class UpdateStreamModeInputTypeDef(TypedDict):
|
|
455
483
|
StreamARN: str
|
|
456
484
|
StreamModeDetails: StreamModeDetailsTypeDef
|
|
485
|
+
WarmThroughputMiBps: NotRequired[int]
|
|
486
|
+
|
|
487
|
+
|
|
488
|
+
class DescribeAccountSettingsOutputTypeDef(TypedDict):
|
|
489
|
+
MinimumThroughputBillingCommitment: MinimumThroughputBillingCommitmentOutputTypeDef
|
|
490
|
+
ResponseMetadata: ResponseMetadataTypeDef
|
|
457
491
|
|
|
458
492
|
|
|
459
493
|
class DescribeLimitsOutputTypeDef(TypedDict):
|
|
@@ -475,8 +509,8 @@ class EmptyResponseMetadataTypeDef(TypedDict):
|
|
|
475
509
|
|
|
476
510
|
class EnhancedMonitoringOutputTypeDef(TypedDict):
|
|
477
511
|
StreamName: str
|
|
478
|
-
CurrentShardLevelMetrics:
|
|
479
|
-
DesiredShardLevelMetrics:
|
|
512
|
+
CurrentShardLevelMetrics: list[MetricsNameType]
|
|
513
|
+
DesiredShardLevelMetrics: list[MetricsNameType]
|
|
480
514
|
StreamARN: str
|
|
481
515
|
ResponseMetadata: ResponseMetadataTypeDef
|
|
482
516
|
|
|
@@ -492,7 +526,7 @@ class GetShardIteratorOutputTypeDef(TypedDict):
|
|
|
492
526
|
|
|
493
527
|
|
|
494
528
|
class ListStreamConsumersOutputTypeDef(TypedDict):
|
|
495
|
-
Consumers:
|
|
529
|
+
Consumers: list[ConsumerTypeDef]
|
|
496
530
|
ResponseMetadata: ResponseMetadataTypeDef
|
|
497
531
|
NextToken: NotRequired[str]
|
|
498
532
|
|
|
@@ -509,6 +543,11 @@ class RegisterStreamConsumerOutputTypeDef(TypedDict):
|
|
|
509
543
|
ResponseMetadata: ResponseMetadataTypeDef
|
|
510
544
|
|
|
511
545
|
|
|
546
|
+
class UpdateAccountSettingsOutputTypeDef(TypedDict):
|
|
547
|
+
MinimumThroughputBillingCommitment: MinimumThroughputBillingCommitmentOutputTypeDef
|
|
548
|
+
ResponseMetadata: ResponseMetadataTypeDef
|
|
549
|
+
|
|
550
|
+
|
|
512
551
|
class UpdateShardCountOutputTypeDef(TypedDict):
|
|
513
552
|
StreamName: str
|
|
514
553
|
CurrentShardCount: int
|
|
@@ -544,21 +583,6 @@ class DescribeStreamInputWaitTypeDef(TypedDict):
|
|
|
544
583
|
WaiterConfig: NotRequired[WaiterConfigTypeDef]
|
|
545
584
|
|
|
546
585
|
|
|
547
|
-
class StreamDescriptionSummaryTypeDef(TypedDict):
|
|
548
|
-
StreamName: str
|
|
549
|
-
StreamARN: str
|
|
550
|
-
StreamStatus: StreamStatusType
|
|
551
|
-
RetentionPeriodHours: int
|
|
552
|
-
StreamCreationTimestamp: datetime
|
|
553
|
-
EnhancedMonitoring: List[EnhancedMetricsTypeDef]
|
|
554
|
-
OpenShardCount: int
|
|
555
|
-
StreamModeDetails: NotRequired[StreamModeDetailsTypeDef]
|
|
556
|
-
EncryptionType: NotRequired[EncryptionTypeType]
|
|
557
|
-
KeyId: NotRequired[str]
|
|
558
|
-
ConsumerCount: NotRequired[int]
|
|
559
|
-
MaxRecordSizeInKiB: NotRequired[int]
|
|
560
|
-
|
|
561
|
-
|
|
562
586
|
class GetShardIteratorInputTypeDef(TypedDict):
|
|
563
587
|
ShardId: str
|
|
564
588
|
ShardIteratorType: ShardIteratorTypeType
|
|
@@ -600,19 +624,23 @@ StartingPositionTypeDef = TypedDict(
|
|
|
600
624
|
|
|
601
625
|
|
|
602
626
|
class ListTagsForResourceOutputTypeDef(TypedDict):
|
|
603
|
-
Tags:
|
|
627
|
+
Tags: list[TagTypeDef]
|
|
604
628
|
ResponseMetadata: ResponseMetadataTypeDef
|
|
605
629
|
|
|
606
630
|
|
|
607
631
|
class ListTagsForStreamOutputTypeDef(TypedDict):
|
|
608
|
-
Tags:
|
|
632
|
+
Tags: list[TagTypeDef]
|
|
609
633
|
HasMoreTags: bool
|
|
610
634
|
ResponseMetadata: ResponseMetadataTypeDef
|
|
611
635
|
|
|
612
636
|
|
|
637
|
+
class UpdateAccountSettingsInputTypeDef(TypedDict):
|
|
638
|
+
MinimumThroughputBillingCommitment: MinimumThroughputBillingCommitmentInputTypeDef
|
|
639
|
+
|
|
640
|
+
|
|
613
641
|
class PutRecordsOutputTypeDef(TypedDict):
|
|
614
642
|
FailedRecordCount: int
|
|
615
|
-
Records:
|
|
643
|
+
Records: list[PutRecordsResultEntryTypeDef]
|
|
616
644
|
EncryptionType: EncryptionTypeType
|
|
617
645
|
ResponseMetadata: ResponseMetadataTypeDef
|
|
618
646
|
|
|
@@ -625,6 +653,29 @@ class ShardTypeDef(TypedDict):
|
|
|
625
653
|
AdjacentParentShardId: NotRequired[str]
|
|
626
654
|
|
|
627
655
|
|
|
656
|
+
class StreamDescriptionSummaryTypeDef(TypedDict):
|
|
657
|
+
StreamName: str
|
|
658
|
+
StreamARN: str
|
|
659
|
+
StreamStatus: StreamStatusType
|
|
660
|
+
RetentionPeriodHours: int
|
|
661
|
+
StreamCreationTimestamp: datetime
|
|
662
|
+
EnhancedMonitoring: list[EnhancedMetricsTypeDef]
|
|
663
|
+
OpenShardCount: int
|
|
664
|
+
StreamModeDetails: NotRequired[StreamModeDetailsTypeDef]
|
|
665
|
+
EncryptionType: NotRequired[EncryptionTypeType]
|
|
666
|
+
KeyId: NotRequired[str]
|
|
667
|
+
ConsumerCount: NotRequired[int]
|
|
668
|
+
WarmThroughput: NotRequired[WarmThroughputObjectTypeDef]
|
|
669
|
+
MaxRecordSizeInKiB: NotRequired[int]
|
|
670
|
+
|
|
671
|
+
|
|
672
|
+
class UpdateStreamWarmThroughputOutputTypeDef(TypedDict):
|
|
673
|
+
StreamARN: str
|
|
674
|
+
StreamName: str
|
|
675
|
+
WarmThroughput: WarmThroughputObjectTypeDef
|
|
676
|
+
ResponseMetadata: ResponseMetadataTypeDef
|
|
677
|
+
|
|
678
|
+
|
|
628
679
|
class PutRecordsInputTypeDef(TypedDict):
|
|
629
680
|
Records: Sequence[PutRecordsRequestEntryTypeDef]
|
|
630
681
|
StreamName: NotRequired[str]
|
|
@@ -632,33 +683,28 @@ class PutRecordsInputTypeDef(TypedDict):
|
|
|
632
683
|
|
|
633
684
|
|
|
634
685
|
class GetRecordsOutputTypeDef(TypedDict):
|
|
635
|
-
Records:
|
|
686
|
+
Records: list[RecordTypeDef]
|
|
636
687
|
NextShardIterator: str
|
|
637
688
|
MillisBehindLatest: int
|
|
638
|
-
ChildShards:
|
|
689
|
+
ChildShards: list[ChildShardTypeDef]
|
|
639
690
|
ResponseMetadata: ResponseMetadataTypeDef
|
|
640
691
|
|
|
641
692
|
|
|
642
693
|
class SubscribeToShardEventTypeDef(TypedDict):
|
|
643
|
-
Records:
|
|
694
|
+
Records: list[RecordTypeDef]
|
|
644
695
|
ContinuationSequenceNumber: str
|
|
645
696
|
MillisBehindLatest: int
|
|
646
|
-
ChildShards: NotRequired[
|
|
697
|
+
ChildShards: NotRequired[list[ChildShardTypeDef]]
|
|
647
698
|
|
|
648
699
|
|
|
649
700
|
class ListStreamsOutputTypeDef(TypedDict):
|
|
650
|
-
StreamNames:
|
|
701
|
+
StreamNames: list[str]
|
|
651
702
|
HasMoreStreams: bool
|
|
652
|
-
StreamSummaries:
|
|
703
|
+
StreamSummaries: list[StreamSummaryTypeDef]
|
|
653
704
|
ResponseMetadata: ResponseMetadataTypeDef
|
|
654
705
|
NextToken: NotRequired[str]
|
|
655
706
|
|
|
656
707
|
|
|
657
|
-
class DescribeStreamSummaryOutputTypeDef(TypedDict):
|
|
658
|
-
StreamDescriptionSummary: StreamDescriptionSummaryTypeDef
|
|
659
|
-
ResponseMetadata: ResponseMetadataTypeDef
|
|
660
|
-
|
|
661
|
-
|
|
662
708
|
class ListShardsInputPaginateTypeDef(TypedDict):
|
|
663
709
|
StreamName: NotRequired[str]
|
|
664
710
|
ExclusiveStartShardId: NotRequired[str]
|
|
@@ -685,7 +731,7 @@ class SubscribeToShardInputTypeDef(TypedDict):
|
|
|
685
731
|
|
|
686
732
|
|
|
687
733
|
class ListShardsOutputTypeDef(TypedDict):
|
|
688
|
-
Shards:
|
|
734
|
+
Shards: list[ShardTypeDef]
|
|
689
735
|
ResponseMetadata: ResponseMetadataTypeDef
|
|
690
736
|
NextToken: NotRequired[str]
|
|
691
737
|
|
|
@@ -694,16 +740,21 @@ class StreamDescriptionTypeDef(TypedDict):
|
|
|
694
740
|
StreamName: str
|
|
695
741
|
StreamARN: str
|
|
696
742
|
StreamStatus: StreamStatusType
|
|
697
|
-
Shards:
|
|
743
|
+
Shards: list[ShardTypeDef]
|
|
698
744
|
HasMoreShards: bool
|
|
699
745
|
RetentionPeriodHours: int
|
|
700
746
|
StreamCreationTimestamp: datetime
|
|
701
|
-
EnhancedMonitoring:
|
|
747
|
+
EnhancedMonitoring: list[EnhancedMetricsTypeDef]
|
|
702
748
|
StreamModeDetails: NotRequired[StreamModeDetailsTypeDef]
|
|
703
749
|
EncryptionType: NotRequired[EncryptionTypeType]
|
|
704
750
|
KeyId: NotRequired[str]
|
|
705
751
|
|
|
706
752
|
|
|
753
|
+
class DescribeStreamSummaryOutputTypeDef(TypedDict):
|
|
754
|
+
StreamDescriptionSummary: StreamDescriptionSummaryTypeDef
|
|
755
|
+
ResponseMetadata: ResponseMetadataTypeDef
|
|
756
|
+
|
|
757
|
+
|
|
707
758
|
class SubscribeToShardEventStreamTypeDef(TypedDict):
|
|
708
759
|
SubscribeToShardEvent: SubscribeToShardEventTypeDef
|
|
709
760
|
ResourceNotFoundException: NotRequired[ResourceNotFoundExceptionTypeDef]
|
mypy_boto3_kinesis/type_defs.pyi
CHANGED
|
@@ -17,6 +17,7 @@ Usage::
|
|
|
17
17
|
from __future__ import annotations
|
|
18
18
|
|
|
19
19
|
import sys
|
|
20
|
+
from collections.abc import Mapping, Sequence
|
|
20
21
|
from datetime import datetime
|
|
21
22
|
from typing import IO, Any, Union
|
|
22
23
|
|
|
@@ -27,18 +28,14 @@ from .literals import (
|
|
|
27
28
|
ConsumerStatusType,
|
|
28
29
|
EncryptionTypeType,
|
|
29
30
|
MetricsNameType,
|
|
31
|
+
MinimumThroughputBillingCommitmentInputStatusType,
|
|
32
|
+
MinimumThroughputBillingCommitmentOutputStatusType,
|
|
30
33
|
ShardFilterTypeType,
|
|
31
34
|
ShardIteratorTypeType,
|
|
32
35
|
StreamModeType,
|
|
33
36
|
StreamStatusType,
|
|
34
37
|
)
|
|
35
38
|
|
|
36
|
-
if sys.version_info >= (3, 9):
|
|
37
|
-
from builtins import dict as Dict
|
|
38
|
-
from builtins import list as List
|
|
39
|
-
from collections.abc import Mapping, Sequence
|
|
40
|
-
else:
|
|
41
|
-
from typing import Dict, List, Mapping, Sequence
|
|
42
39
|
if sys.version_info >= (3, 12):
|
|
43
40
|
from typing import Literal, NotRequired, TypedDict
|
|
44
41
|
else:
|
|
@@ -55,6 +52,7 @@ __all__ = (
|
|
|
55
52
|
"DeleteResourcePolicyInputTypeDef",
|
|
56
53
|
"DeleteStreamInputTypeDef",
|
|
57
54
|
"DeregisterStreamConsumerInputTypeDef",
|
|
55
|
+
"DescribeAccountSettingsOutputTypeDef",
|
|
58
56
|
"DescribeLimitsOutputTypeDef",
|
|
59
57
|
"DescribeStreamConsumerInputTypeDef",
|
|
60
58
|
"DescribeStreamConsumerOutputTypeDef",
|
|
@@ -99,6 +97,8 @@ __all__ = (
|
|
|
99
97
|
"ListTagsForStreamInputTypeDef",
|
|
100
98
|
"ListTagsForStreamOutputTypeDef",
|
|
101
99
|
"MergeShardsInputTypeDef",
|
|
100
|
+
"MinimumThroughputBillingCommitmentInputTypeDef",
|
|
101
|
+
"MinimumThroughputBillingCommitmentOutputTypeDef",
|
|
102
102
|
"PaginatorConfigTypeDef",
|
|
103
103
|
"PutRecordInputTypeDef",
|
|
104
104
|
"PutRecordOutputTypeDef",
|
|
@@ -133,11 +133,16 @@ __all__ = (
|
|
|
133
133
|
"TagTypeDef",
|
|
134
134
|
"TimestampTypeDef",
|
|
135
135
|
"UntagResourceInputTypeDef",
|
|
136
|
+
"UpdateAccountSettingsInputTypeDef",
|
|
137
|
+
"UpdateAccountSettingsOutputTypeDef",
|
|
136
138
|
"UpdateMaxRecordSizeInputTypeDef",
|
|
137
139
|
"UpdateShardCountInputTypeDef",
|
|
138
140
|
"UpdateShardCountOutputTypeDef",
|
|
139
141
|
"UpdateStreamModeInputTypeDef",
|
|
142
|
+
"UpdateStreamWarmThroughputInputTypeDef",
|
|
143
|
+
"UpdateStreamWarmThroughputOutputTypeDef",
|
|
140
144
|
"WaiterConfigTypeDef",
|
|
145
|
+
"WarmThroughputObjectTypeDef",
|
|
141
146
|
)
|
|
142
147
|
|
|
143
148
|
class AddTagsToStreamInputTypeDef(TypedDict):
|
|
@@ -185,10 +190,16 @@ class DeregisterStreamConsumerInputTypeDef(TypedDict):
|
|
|
185
190
|
ConsumerName: NotRequired[str]
|
|
186
191
|
ConsumerARN: NotRequired[str]
|
|
187
192
|
|
|
193
|
+
class MinimumThroughputBillingCommitmentOutputTypeDef(TypedDict):
|
|
194
|
+
Status: MinimumThroughputBillingCommitmentOutputStatusType
|
|
195
|
+
StartedAt: NotRequired[datetime]
|
|
196
|
+
EndedAt: NotRequired[datetime]
|
|
197
|
+
EarliestAllowedEndAt: NotRequired[datetime]
|
|
198
|
+
|
|
188
199
|
class ResponseMetadataTypeDef(TypedDict):
|
|
189
200
|
RequestId: str
|
|
190
201
|
HTTPStatusCode: int
|
|
191
|
-
HTTPHeaders:
|
|
202
|
+
HTTPHeaders: dict[str, str]
|
|
192
203
|
RetryAttempts: int
|
|
193
204
|
HostId: NotRequired[str]
|
|
194
205
|
|
|
@@ -227,7 +238,7 @@ class EnableEnhancedMonitoringInputTypeDef(TypedDict):
|
|
|
227
238
|
StreamARN: NotRequired[str]
|
|
228
239
|
|
|
229
240
|
class EnhancedMetricsTypeDef(TypedDict):
|
|
230
|
-
ShardLevelMetrics: NotRequired[
|
|
241
|
+
ShardLevelMetrics: NotRequired[list[MetricsNameType]]
|
|
231
242
|
|
|
232
243
|
class GetRecordsInputTypeDef(TypedDict):
|
|
233
244
|
ShardIterator: str
|
|
@@ -296,6 +307,9 @@ class MergeShardsInputTypeDef(TypedDict):
|
|
|
296
307
|
StreamName: NotRequired[str]
|
|
297
308
|
StreamARN: NotRequired[str]
|
|
298
309
|
|
|
310
|
+
class MinimumThroughputBillingCommitmentInputTypeDef(TypedDict):
|
|
311
|
+
Status: MinimumThroughputBillingCommitmentInputStatusType
|
|
312
|
+
|
|
299
313
|
class PutRecordsResultEntryTypeDef(TypedDict):
|
|
300
314
|
SequenceNumber: NotRequired[str]
|
|
301
315
|
ShardId: NotRequired[str]
|
|
@@ -344,6 +358,10 @@ class StopStreamEncryptionInputTypeDef(TypedDict):
|
|
|
344
358
|
StreamName: NotRequired[str]
|
|
345
359
|
StreamARN: NotRequired[str]
|
|
346
360
|
|
|
361
|
+
class WarmThroughputObjectTypeDef(TypedDict):
|
|
362
|
+
TargetMiBps: NotRequired[int]
|
|
363
|
+
CurrentMiBps: NotRequired[int]
|
|
364
|
+
|
|
347
365
|
class TagResourceInputTypeDef(TypedDict):
|
|
348
366
|
Tags: Mapping[str, str]
|
|
349
367
|
ResourceARN: str
|
|
@@ -362,6 +380,11 @@ class UpdateShardCountInputTypeDef(TypedDict):
|
|
|
362
380
|
StreamName: NotRequired[str]
|
|
363
381
|
StreamARN: NotRequired[str]
|
|
364
382
|
|
|
383
|
+
class UpdateStreamWarmThroughputInputTypeDef(TypedDict):
|
|
384
|
+
WarmThroughputMiBps: int
|
|
385
|
+
StreamARN: NotRequired[str]
|
|
386
|
+
StreamName: NotRequired[str]
|
|
387
|
+
|
|
365
388
|
class PutRecordInputTypeDef(TypedDict):
|
|
366
389
|
Data: BlobTypeDef
|
|
367
390
|
PartitionKey: str
|
|
@@ -377,7 +400,7 @@ class PutRecordsRequestEntryTypeDef(TypedDict):
|
|
|
377
400
|
|
|
378
401
|
class ChildShardTypeDef(TypedDict):
|
|
379
402
|
ShardId: str
|
|
380
|
-
ParentShards:
|
|
403
|
+
ParentShards: list[str]
|
|
381
404
|
HashKeyRange: HashKeyRangeTypeDef
|
|
382
405
|
|
|
383
406
|
class CreateStreamInputTypeDef(TypedDict):
|
|
@@ -385,6 +408,7 @@ class CreateStreamInputTypeDef(TypedDict):
|
|
|
385
408
|
ShardCount: NotRequired[int]
|
|
386
409
|
StreamModeDetails: NotRequired[StreamModeDetailsTypeDef]
|
|
387
410
|
Tags: NotRequired[Mapping[str, str]]
|
|
411
|
+
WarmThroughputMiBps: NotRequired[int]
|
|
388
412
|
MaxRecordSizeInKiB: NotRequired[int]
|
|
389
413
|
|
|
390
414
|
class StreamSummaryTypeDef(TypedDict):
|
|
@@ -397,6 +421,11 @@ class StreamSummaryTypeDef(TypedDict):
|
|
|
397
421
|
class UpdateStreamModeInputTypeDef(TypedDict):
|
|
398
422
|
StreamARN: str
|
|
399
423
|
StreamModeDetails: StreamModeDetailsTypeDef
|
|
424
|
+
WarmThroughputMiBps: NotRequired[int]
|
|
425
|
+
|
|
426
|
+
class DescribeAccountSettingsOutputTypeDef(TypedDict):
|
|
427
|
+
MinimumThroughputBillingCommitment: MinimumThroughputBillingCommitmentOutputTypeDef
|
|
428
|
+
ResponseMetadata: ResponseMetadataTypeDef
|
|
400
429
|
|
|
401
430
|
class DescribeLimitsOutputTypeDef(TypedDict):
|
|
402
431
|
ShardLimit: int
|
|
@@ -414,8 +443,8 @@ class EmptyResponseMetadataTypeDef(TypedDict):
|
|
|
414
443
|
|
|
415
444
|
class EnhancedMonitoringOutputTypeDef(TypedDict):
|
|
416
445
|
StreamName: str
|
|
417
|
-
CurrentShardLevelMetrics:
|
|
418
|
-
DesiredShardLevelMetrics:
|
|
446
|
+
CurrentShardLevelMetrics: list[MetricsNameType]
|
|
447
|
+
DesiredShardLevelMetrics: list[MetricsNameType]
|
|
419
448
|
StreamARN: str
|
|
420
449
|
ResponseMetadata: ResponseMetadataTypeDef
|
|
421
450
|
|
|
@@ -428,7 +457,7 @@ class GetShardIteratorOutputTypeDef(TypedDict):
|
|
|
428
457
|
ResponseMetadata: ResponseMetadataTypeDef
|
|
429
458
|
|
|
430
459
|
class ListStreamConsumersOutputTypeDef(TypedDict):
|
|
431
|
-
Consumers:
|
|
460
|
+
Consumers: list[ConsumerTypeDef]
|
|
432
461
|
ResponseMetadata: ResponseMetadataTypeDef
|
|
433
462
|
NextToken: NotRequired[str]
|
|
434
463
|
|
|
@@ -442,6 +471,10 @@ class RegisterStreamConsumerOutputTypeDef(TypedDict):
|
|
|
442
471
|
Consumer: ConsumerTypeDef
|
|
443
472
|
ResponseMetadata: ResponseMetadataTypeDef
|
|
444
473
|
|
|
474
|
+
class UpdateAccountSettingsOutputTypeDef(TypedDict):
|
|
475
|
+
MinimumThroughputBillingCommitment: MinimumThroughputBillingCommitmentOutputTypeDef
|
|
476
|
+
ResponseMetadata: ResponseMetadataTypeDef
|
|
477
|
+
|
|
445
478
|
class UpdateShardCountOutputTypeDef(TypedDict):
|
|
446
479
|
StreamName: str
|
|
447
480
|
CurrentShardCount: int
|
|
@@ -472,20 +505,6 @@ class DescribeStreamInputWaitTypeDef(TypedDict):
|
|
|
472
505
|
StreamARN: NotRequired[str]
|
|
473
506
|
WaiterConfig: NotRequired[WaiterConfigTypeDef]
|
|
474
507
|
|
|
475
|
-
class StreamDescriptionSummaryTypeDef(TypedDict):
|
|
476
|
-
StreamName: str
|
|
477
|
-
StreamARN: str
|
|
478
|
-
StreamStatus: StreamStatusType
|
|
479
|
-
RetentionPeriodHours: int
|
|
480
|
-
StreamCreationTimestamp: datetime
|
|
481
|
-
EnhancedMonitoring: List[EnhancedMetricsTypeDef]
|
|
482
|
-
OpenShardCount: int
|
|
483
|
-
StreamModeDetails: NotRequired[StreamModeDetailsTypeDef]
|
|
484
|
-
EncryptionType: NotRequired[EncryptionTypeType]
|
|
485
|
-
KeyId: NotRequired[str]
|
|
486
|
-
ConsumerCount: NotRequired[int]
|
|
487
|
-
MaxRecordSizeInKiB: NotRequired[int]
|
|
488
|
-
|
|
489
508
|
class GetShardIteratorInputTypeDef(TypedDict):
|
|
490
509
|
ShardId: str
|
|
491
510
|
ShardIteratorType: ShardIteratorTypeType
|
|
@@ -523,17 +542,20 @@ StartingPositionTypeDef = TypedDict(
|
|
|
523
542
|
)
|
|
524
543
|
|
|
525
544
|
class ListTagsForResourceOutputTypeDef(TypedDict):
|
|
526
|
-
Tags:
|
|
545
|
+
Tags: list[TagTypeDef]
|
|
527
546
|
ResponseMetadata: ResponseMetadataTypeDef
|
|
528
547
|
|
|
529
548
|
class ListTagsForStreamOutputTypeDef(TypedDict):
|
|
530
|
-
Tags:
|
|
549
|
+
Tags: list[TagTypeDef]
|
|
531
550
|
HasMoreTags: bool
|
|
532
551
|
ResponseMetadata: ResponseMetadataTypeDef
|
|
533
552
|
|
|
553
|
+
class UpdateAccountSettingsInputTypeDef(TypedDict):
|
|
554
|
+
MinimumThroughputBillingCommitment: MinimumThroughputBillingCommitmentInputTypeDef
|
|
555
|
+
|
|
534
556
|
class PutRecordsOutputTypeDef(TypedDict):
|
|
535
557
|
FailedRecordCount: int
|
|
536
|
-
Records:
|
|
558
|
+
Records: list[PutRecordsResultEntryTypeDef]
|
|
537
559
|
EncryptionType: EncryptionTypeType
|
|
538
560
|
ResponseMetadata: ResponseMetadataTypeDef
|
|
539
561
|
|
|
@@ -544,35 +566,52 @@ class ShardTypeDef(TypedDict):
|
|
|
544
566
|
ParentShardId: NotRequired[str]
|
|
545
567
|
AdjacentParentShardId: NotRequired[str]
|
|
546
568
|
|
|
569
|
+
class StreamDescriptionSummaryTypeDef(TypedDict):
|
|
570
|
+
StreamName: str
|
|
571
|
+
StreamARN: str
|
|
572
|
+
StreamStatus: StreamStatusType
|
|
573
|
+
RetentionPeriodHours: int
|
|
574
|
+
StreamCreationTimestamp: datetime
|
|
575
|
+
EnhancedMonitoring: list[EnhancedMetricsTypeDef]
|
|
576
|
+
OpenShardCount: int
|
|
577
|
+
StreamModeDetails: NotRequired[StreamModeDetailsTypeDef]
|
|
578
|
+
EncryptionType: NotRequired[EncryptionTypeType]
|
|
579
|
+
KeyId: NotRequired[str]
|
|
580
|
+
ConsumerCount: NotRequired[int]
|
|
581
|
+
WarmThroughput: NotRequired[WarmThroughputObjectTypeDef]
|
|
582
|
+
MaxRecordSizeInKiB: NotRequired[int]
|
|
583
|
+
|
|
584
|
+
class UpdateStreamWarmThroughputOutputTypeDef(TypedDict):
|
|
585
|
+
StreamARN: str
|
|
586
|
+
StreamName: str
|
|
587
|
+
WarmThroughput: WarmThroughputObjectTypeDef
|
|
588
|
+
ResponseMetadata: ResponseMetadataTypeDef
|
|
589
|
+
|
|
547
590
|
class PutRecordsInputTypeDef(TypedDict):
|
|
548
591
|
Records: Sequence[PutRecordsRequestEntryTypeDef]
|
|
549
592
|
StreamName: NotRequired[str]
|
|
550
593
|
StreamARN: NotRequired[str]
|
|
551
594
|
|
|
552
595
|
class GetRecordsOutputTypeDef(TypedDict):
|
|
553
|
-
Records:
|
|
596
|
+
Records: list[RecordTypeDef]
|
|
554
597
|
NextShardIterator: str
|
|
555
598
|
MillisBehindLatest: int
|
|
556
|
-
ChildShards:
|
|
599
|
+
ChildShards: list[ChildShardTypeDef]
|
|
557
600
|
ResponseMetadata: ResponseMetadataTypeDef
|
|
558
601
|
|
|
559
602
|
class SubscribeToShardEventTypeDef(TypedDict):
|
|
560
|
-
Records:
|
|
603
|
+
Records: list[RecordTypeDef]
|
|
561
604
|
ContinuationSequenceNumber: str
|
|
562
605
|
MillisBehindLatest: int
|
|
563
|
-
ChildShards: NotRequired[
|
|
606
|
+
ChildShards: NotRequired[list[ChildShardTypeDef]]
|
|
564
607
|
|
|
565
608
|
class ListStreamsOutputTypeDef(TypedDict):
|
|
566
|
-
StreamNames:
|
|
609
|
+
StreamNames: list[str]
|
|
567
610
|
HasMoreStreams: bool
|
|
568
|
-
StreamSummaries:
|
|
611
|
+
StreamSummaries: list[StreamSummaryTypeDef]
|
|
569
612
|
ResponseMetadata: ResponseMetadataTypeDef
|
|
570
613
|
NextToken: NotRequired[str]
|
|
571
614
|
|
|
572
|
-
class DescribeStreamSummaryOutputTypeDef(TypedDict):
|
|
573
|
-
StreamDescriptionSummary: StreamDescriptionSummaryTypeDef
|
|
574
|
-
ResponseMetadata: ResponseMetadataTypeDef
|
|
575
|
-
|
|
576
615
|
class ListShardsInputPaginateTypeDef(TypedDict):
|
|
577
616
|
StreamName: NotRequired[str]
|
|
578
617
|
ExclusiveStartShardId: NotRequired[str]
|
|
@@ -596,7 +635,7 @@ class SubscribeToShardInputTypeDef(TypedDict):
|
|
|
596
635
|
StartingPosition: StartingPositionTypeDef
|
|
597
636
|
|
|
598
637
|
class ListShardsOutputTypeDef(TypedDict):
|
|
599
|
-
Shards:
|
|
638
|
+
Shards: list[ShardTypeDef]
|
|
600
639
|
ResponseMetadata: ResponseMetadataTypeDef
|
|
601
640
|
NextToken: NotRequired[str]
|
|
602
641
|
|
|
@@ -604,15 +643,19 @@ class StreamDescriptionTypeDef(TypedDict):
|
|
|
604
643
|
StreamName: str
|
|
605
644
|
StreamARN: str
|
|
606
645
|
StreamStatus: StreamStatusType
|
|
607
|
-
Shards:
|
|
646
|
+
Shards: list[ShardTypeDef]
|
|
608
647
|
HasMoreShards: bool
|
|
609
648
|
RetentionPeriodHours: int
|
|
610
649
|
StreamCreationTimestamp: datetime
|
|
611
|
-
EnhancedMonitoring:
|
|
650
|
+
EnhancedMonitoring: list[EnhancedMetricsTypeDef]
|
|
612
651
|
StreamModeDetails: NotRequired[StreamModeDetailsTypeDef]
|
|
613
652
|
EncryptionType: NotRequired[EncryptionTypeType]
|
|
614
653
|
KeyId: NotRequired[str]
|
|
615
654
|
|
|
655
|
+
class DescribeStreamSummaryOutputTypeDef(TypedDict):
|
|
656
|
+
StreamDescriptionSummary: StreamDescriptionSummaryTypeDef
|
|
657
|
+
ResponseMetadata: ResponseMetadataTypeDef
|
|
658
|
+
|
|
616
659
|
class SubscribeToShardEventStreamTypeDef(TypedDict):
|
|
617
660
|
SubscribeToShardEvent: SubscribeToShardEventTypeDef
|
|
618
661
|
ResourceNotFoundException: NotRequired[ResourceNotFoundExceptionTypeDef]
|
mypy_boto3_kinesis/version.py
CHANGED
|
@@ -1,23 +1,21 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: mypy-boto3-kinesis
|
|
3
|
-
Version: 1.
|
|
4
|
-
Summary: Type annotations for boto3 Kinesis 1.
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
License: MIT License
|
|
3
|
+
Version: 1.41.0
|
|
4
|
+
Summary: Type annotations for boto3 Kinesis 1.41.0 service generated with mypy-boto3-builder 8.12.0
|
|
5
|
+
Author-email: Vlad Emelianov <vlad.emelianov.nz@gmail.com>
|
|
6
|
+
License-Expression: MIT
|
|
7
|
+
Project-URL: Homepage, https://github.com/youtype/mypy_boto3_builder
|
|
9
8
|
Project-URL: Documentation, https://youtype.github.io/boto3_stubs_docs/mypy_boto3_kinesis/
|
|
10
9
|
Project-URL: Source, https://github.com/youtype/mypy_boto3_builder
|
|
11
10
|
Project-URL: Tracker, https://github.com/youtype/mypy_boto3_builder/issues
|
|
12
|
-
Keywords: boto3
|
|
11
|
+
Keywords: boto3,kinesis,boto3-stubs,type-annotations,mypy,typeshed,autocomplete
|
|
12
|
+
Platform: any
|
|
13
13
|
Classifier: Development Status :: 5 - Production/Stable
|
|
14
14
|
Classifier: Intended Audience :: Developers
|
|
15
15
|
Classifier: Environment :: Console
|
|
16
|
-
Classifier: License :: OSI Approved :: MIT License
|
|
17
16
|
Classifier: Natural Language :: English
|
|
18
17
|
Classifier: Operating System :: OS Independent
|
|
19
18
|
Classifier: Programming Language :: Python :: 3
|
|
20
|
-
Classifier: Programming Language :: Python :: 3.8
|
|
21
19
|
Classifier: Programming Language :: Python :: 3.9
|
|
22
20
|
Classifier: Programming Language :: Python :: 3.10
|
|
23
21
|
Classifier: Programming Language :: Python :: 3.11
|
|
@@ -27,23 +25,11 @@ Classifier: Programming Language :: Python :: 3.14
|
|
|
27
25
|
Classifier: Programming Language :: Python :: 3 :: Only
|
|
28
26
|
Classifier: Programming Language :: Python :: Implementation :: CPython
|
|
29
27
|
Classifier: Typing :: Stubs Only
|
|
30
|
-
Requires-Python: >=3.
|
|
28
|
+
Requires-Python: >=3.9
|
|
31
29
|
Description-Content-Type: text/markdown
|
|
32
30
|
License-File: LICENSE
|
|
33
31
|
Requires-Dist: typing-extensions; python_version < "3.12"
|
|
34
|
-
Dynamic: author
|
|
35
|
-
Dynamic: author-email
|
|
36
|
-
Dynamic: classifier
|
|
37
|
-
Dynamic: description
|
|
38
|
-
Dynamic: description-content-type
|
|
39
|
-
Dynamic: home-page
|
|
40
|
-
Dynamic: keywords
|
|
41
|
-
Dynamic: license
|
|
42
32
|
Dynamic: license-file
|
|
43
|
-
Dynamic: project-url
|
|
44
|
-
Dynamic: requires-dist
|
|
45
|
-
Dynamic: requires-python
|
|
46
|
-
Dynamic: summary
|
|
47
33
|
|
|
48
34
|
<a id="mypy-boto3-kinesis"></a>
|
|
49
35
|
|
|
@@ -56,7 +42,7 @@ Dynamic: summary
|
|
|
56
42
|
|
|
57
43
|

|
|
58
44
|
|
|
59
|
-
Type annotations for [boto3 Kinesis 1.
|
|
45
|
+
Type annotations for [boto3 Kinesis 1.41.0](https://pypi.org/project/boto3/)
|
|
60
46
|
compatible with [VSCode](https://code.visualstudio.com/),
|
|
61
47
|
[PyCharm](https://www.jetbrains.com/pycharm/),
|
|
62
48
|
[Emacs](https://www.gnu.org/software/emacs/),
|
|
@@ -65,7 +51,7 @@ compatible with [VSCode](https://code.visualstudio.com/),
|
|
|
65
51
|
[pyright](https://github.com/microsoft/pyright) and other tools.
|
|
66
52
|
|
|
67
53
|
Generated with
|
|
68
|
-
[mypy-boto3-builder 8.
|
|
54
|
+
[mypy-boto3-builder 8.12.0](https://github.com/youtype/mypy_boto3_builder).
|
|
69
55
|
|
|
70
56
|
More information can be found on
|
|
71
57
|
[boto3-stubs](https://pypi.org/project/boto3-stubs/) page and in
|
|
@@ -119,7 +105,7 @@ You can generate type annotations for `boto3` package locally with
|
|
|
119
105
|
isolation.
|
|
120
106
|
|
|
121
107
|
1. Run mypy-boto3-builder in your package root directory:
|
|
122
|
-
`uvx --with 'boto3==1.
|
|
108
|
+
`uvx --with 'boto3==1.41.0' mypy-boto3-builder`
|
|
123
109
|
2. Select `boto3-stubs` AWS SDK.
|
|
124
110
|
3. Add `Kinesis` service.
|
|
125
111
|
4. Use provided commands to install generated packages.
|
|
@@ -0,0 +1,20 @@
|
|
|
1
|
+
mypy_boto3_kinesis/__init__.py,sha256=c6fbT8jb7LdZvC-Ka75wS-cvI8rHMsZs2wZjfo9-VkI,1627
|
|
2
|
+
mypy_boto3_kinesis/__init__.pyi,sha256=Wr8W1sGtUbfytB2BETNxIgcW52e5sxoLWa02XtiGUrM,1626
|
|
3
|
+
mypy_boto3_kinesis/__main__.py,sha256=Nc0uht9fktSCKvfeTRqN_AvSK4aze8AiTpi36TmqSFU,981
|
|
4
|
+
mypy_boto3_kinesis/client.py,sha256=na_BuyKN2XNB6LVLBaPTV-HdxMgStWe3DZgoCMdYF1w,29255
|
|
5
|
+
mypy_boto3_kinesis/client.pyi,sha256=av8ETzJ5BcXliUFYUXGXC84zQbpaNo5hWr3r6IXif_4,29252
|
|
6
|
+
mypy_boto3_kinesis/literals.py,sha256=AcsEP8vajxn1H9_21GPXBwImWyLjcLrs1StXSkRKqLM,11617
|
|
7
|
+
mypy_boto3_kinesis/literals.pyi,sha256=jTGfvhwD0sEY0uoNpbdqVM5f6zzO3JhtOm1eiAxGD88,11615
|
|
8
|
+
mypy_boto3_kinesis/paginator.py,sha256=tQw5iLbSfpfQpFOZO6F7E7iLl5Wa6UHVOV5NNsOSHq8,5975
|
|
9
|
+
mypy_boto3_kinesis/paginator.pyi,sha256=eKr2_uKm1SsXf32Al035W92u-GqKlcnyyN93603hREk,5962
|
|
10
|
+
mypy_boto3_kinesis/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
11
|
+
mypy_boto3_kinesis/type_defs.py,sha256=ti4uwxTIh9zKcHB5faJ6HY7MiW28X4P71wNFuK5oS0E,21522
|
|
12
|
+
mypy_boto3_kinesis/type_defs.pyi,sha256=pzDue-YPJv8K9GN15XXlMcLSTsoOZS5b4pn63tN_lVI,21421
|
|
13
|
+
mypy_boto3_kinesis/version.py,sha256=ZtEblsbAVbZWuGFYY23SYRu3T8sCoiDNfG49dV1XWUA,92
|
|
14
|
+
mypy_boto3_kinesis/waiter.py,sha256=Rfx1x2yamg1d6o_e2_gSQMFljf5P-DW3KquwwTzeiUE,2644
|
|
15
|
+
mypy_boto3_kinesis/waiter.pyi,sha256=yTr9drWEjmfYOnOJoGVXXjj3008HPVJfLoKokt4Oxeg,2639
|
|
16
|
+
mypy_boto3_kinesis-1.41.0.dist-info/licenses/LICENSE,sha256=4jNgB8jJbXtUVJkeygwhUQi--6lAG8DIisfE-h_RiUU,1070
|
|
17
|
+
mypy_boto3_kinesis-1.41.0.dist-info/METADATA,sha256=D6S-tINfX0i8wuLw-jQtZZv5xOY4gv9DySP-agB3Jvo,15617
|
|
18
|
+
mypy_boto3_kinesis-1.41.0.dist-info/WHEEL,sha256=_zCd3N1l69ArxyTb8rzEoP9TpbYXkqRFSNOD5OuxnTs,91
|
|
19
|
+
mypy_boto3_kinesis-1.41.0.dist-info/top_level.txt,sha256=Kqd0fpFV60VgCylCPAkGxClbQclLdFRYnSY5JsAj_7Y,19
|
|
20
|
+
mypy_boto3_kinesis-1.41.0.dist-info/RECORD,,
|
|
@@ -1,20 +0,0 @@
|
|
|
1
|
-
mypy_boto3_kinesis/__init__.py,sha256=c6fbT8jb7LdZvC-Ka75wS-cvI8rHMsZs2wZjfo9-VkI,1627
|
|
2
|
-
mypy_boto3_kinesis/__init__.pyi,sha256=Wr8W1sGtUbfytB2BETNxIgcW52e5sxoLWa02XtiGUrM,1626
|
|
3
|
-
mypy_boto3_kinesis/__main__.py,sha256=0PceRL51u-LbWJREM5L-9qoMHMxdNmNnGD_NTgWxiJ0,984
|
|
4
|
-
mypy_boto3_kinesis/client.py,sha256=RMiKatsf2-Xk9DPsY2Ir2qrGxTZBk6B3XohwzCMO81s,27528
|
|
5
|
-
mypy_boto3_kinesis/client.pyi,sha256=qbTvQoMdaEANuGlFiYRbR4EsrQ_W8Sdbq06AZcsYUCM,27525
|
|
6
|
-
mypy_boto3_kinesis/literals.py,sha256=GDqrfZSrh4ThgP2OL-oR4T_bMUQHLgQeU5t63dp3Ra4,11350
|
|
7
|
-
mypy_boto3_kinesis/literals.pyi,sha256=dAU1Ca_WRrP-JmDq9XUXq0muVspsb6tKIz_Lj2IMfZc,11348
|
|
8
|
-
mypy_boto3_kinesis/paginator.py,sha256=tQw5iLbSfpfQpFOZO6F7E7iLl5Wa6UHVOV5NNsOSHq8,5975
|
|
9
|
-
mypy_boto3_kinesis/paginator.pyi,sha256=eKr2_uKm1SsXf32Al035W92u-GqKlcnyyN93603hREk,5962
|
|
10
|
-
mypy_boto3_kinesis/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
11
|
-
mypy_boto3_kinesis/type_defs.py,sha256=Ue-uNLVNzwlXhVRLvxRhNiD_OnglgzzfxUTF70eUDUI,19708
|
|
12
|
-
mypy_boto3_kinesis/type_defs.pyi,sha256=XUXRRa5Eu3Yc1aJ68_MeOYKY-X9Oxv3UW18EcK3dCQM,19615
|
|
13
|
-
mypy_boto3_kinesis/version.py,sha256=NzXluJrrNARU_IqVC98fZ7B1YuUJkewLTY2LI9mZCDQ,93
|
|
14
|
-
mypy_boto3_kinesis/waiter.py,sha256=Rfx1x2yamg1d6o_e2_gSQMFljf5P-DW3KquwwTzeiUE,2644
|
|
15
|
-
mypy_boto3_kinesis/waiter.pyi,sha256=yTr9drWEjmfYOnOJoGVXXjj3008HPVJfLoKokt4Oxeg,2639
|
|
16
|
-
mypy_boto3_kinesis-1.40.60.dist-info/licenses/LICENSE,sha256=4jNgB8jJbXtUVJkeygwhUQi--6lAG8DIisfE-h_RiUU,1070
|
|
17
|
-
mypy_boto3_kinesis-1.40.60.dist-info/METADATA,sha256=Aj1BuJfB4lZ5OcSsrnVXAZoWmvGlZOnftRirKrynChA,15952
|
|
18
|
-
mypy_boto3_kinesis-1.40.60.dist-info/WHEEL,sha256=_zCd3N1l69ArxyTb8rzEoP9TpbYXkqRFSNOD5OuxnTs,91
|
|
19
|
-
mypy_boto3_kinesis-1.40.60.dist-info/top_level.txt,sha256=Kqd0fpFV60VgCylCPAkGxClbQclLdFRYnSY5JsAj_7Y,19
|
|
20
|
-
mypy_boto3_kinesis-1.40.60.dist-info/RECORD,,
|
|
File without changes
|
{mypy_boto3_kinesis-1.40.60.dist-info → mypy_boto3_kinesis-1.41.0.dist-info}/licenses/LICENSE
RENAMED
|
File without changes
|
|
File without changes
|