types-boto3-kinesis 1.35.71__py3-none-any.whl → 1.35.93__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/__init__.py +1 -1
- types_boto3_kinesis/__init__.pyi +1 -1
- types_boto3_kinesis/__main__.py +9 -8
- types_boto3_kinesis/client.py +36 -31
- types_boto3_kinesis/client.pyi +36 -30
- types_boto3_kinesis/literals.py +10 -2
- types_boto3_kinesis/literals.pyi +10 -2
- types_boto3_kinesis/paginator.py +47 -31
- types_boto3_kinesis/paginator.pyi +44 -30
- types_boto3_kinesis/type_defs.py +22 -23
- types_boto3_kinesis/type_defs.pyi +22 -22
- types_boto3_kinesis/version.py +2 -2
- types_boto3_kinesis/waiter.py +11 -8
- types_boto3_kinesis/waiter.pyi +11 -8
- {types_boto3_kinesis-1.35.71.dist-info → types_boto3_kinesis-1.35.93.dist-info}/LICENSE +1 -1
- {types_boto3_kinesis-1.35.71.dist-info → types_boto3_kinesis-1.35.93.dist-info}/METADATA +50 -10
- types_boto3_kinesis-1.35.93.dist-info/RECORD +20 -0
- {types_boto3_kinesis-1.35.71.dist-info → types_boto3_kinesis-1.35.93.dist-info}/WHEEL +1 -1
- types_boto3_kinesis-1.35.71.dist-info/RECORD +0 -20
- {types_boto3_kinesis-1.35.71.dist-info → types_boto3_kinesis-1.35.93.dist-info}/top_level.txt +0 -0
types_boto3_kinesis/__init__.py
CHANGED
types_boto3_kinesis/__init__.pyi
CHANGED
types_boto3_kinesis/__main__.py
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
"""
|
|
2
2
|
Main CLI entrypoint.
|
|
3
3
|
|
|
4
|
-
Copyright
|
|
4
|
+
Copyright 2025 Vlad Emelianov
|
|
5
5
|
"""
|
|
6
6
|
|
|
7
7
|
import sys
|
|
@@ -11,14 +11,14 @@ def print_info() -> None:
|
|
|
11
11
|
"""
|
|
12
12
|
Print package info to stdout.
|
|
13
13
|
"""
|
|
14
|
-
|
|
15
|
-
"Type annotations for boto3 Kinesis 1.35.
|
|
16
|
-
"Version: 1.35.
|
|
17
|
-
"Builder version: 8.
|
|
14
|
+
sys.stdout.write(
|
|
15
|
+
"Type annotations for boto3 Kinesis 1.35.93\n"
|
|
16
|
+
"Version: 1.35.93\n"
|
|
17
|
+
"Builder version: 8.8.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"
|
|
21
|
-
"Changelog: https://github.com/youtype/mypy_boto3_builder/releases"
|
|
21
|
+
"Changelog: https://github.com/youtype/mypy_boto3_builder/releases\n"
|
|
22
22
|
)
|
|
23
23
|
|
|
24
24
|
|
|
@@ -26,7 +26,7 @@ def print_version() -> None:
|
|
|
26
26
|
"""
|
|
27
27
|
Print package version to stdout.
|
|
28
28
|
"""
|
|
29
|
-
|
|
29
|
+
sys.stdout.write("1.35.93\n")
|
|
30
30
|
|
|
31
31
|
|
|
32
32
|
def main() -> None:
|
|
@@ -34,7 +34,8 @@ def main() -> None:
|
|
|
34
34
|
Main CLI entrypoint.
|
|
35
35
|
"""
|
|
36
36
|
if "--version" in sys.argv:
|
|
37
|
-
|
|
37
|
+
print_version()
|
|
38
|
+
return
|
|
38
39
|
print_info()
|
|
39
40
|
|
|
40
41
|
|
types_boto3_kinesis/client.py
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
"""
|
|
2
|
-
Type annotations for kinesis service
|
|
2
|
+
Type annotations for kinesis service Client.
|
|
3
3
|
|
|
4
|
-
[
|
|
4
|
+
[Documentation](https://youtype.github.io/types_boto3_docs/types_boto3_kinesis/client/)
|
|
5
5
|
|
|
6
6
|
Usage::
|
|
7
7
|
|
|
@@ -13,13 +13,17 @@ Usage::
|
|
|
13
13
|
client: KinesisClient = session.client("kinesis")
|
|
14
14
|
```
|
|
15
15
|
|
|
16
|
-
Copyright
|
|
16
|
+
Copyright 2025 Vlad Emelianov
|
|
17
17
|
"""
|
|
18
18
|
|
|
19
|
+
from __future__ import annotations
|
|
20
|
+
|
|
19
21
|
import sys
|
|
20
|
-
from typing import Any,
|
|
22
|
+
from typing import Any, overload
|
|
21
23
|
|
|
22
24
|
from botocore.client import BaseClient, ClientMeta
|
|
25
|
+
from botocore.errorfactory import BaseClientExceptions
|
|
26
|
+
from botocore.exceptions import ClientError as BotocoreClientError
|
|
23
27
|
|
|
24
28
|
from .paginator import (
|
|
25
29
|
DescribeStreamPaginator,
|
|
@@ -80,6 +84,11 @@ from .type_defs import (
|
|
|
80
84
|
)
|
|
81
85
|
from .waiter import StreamExistsWaiter, StreamNotExistsWaiter
|
|
82
86
|
|
|
87
|
+
if sys.version_info >= (3, 9):
|
|
88
|
+
from builtins import type as Type
|
|
89
|
+
from collections.abc import Mapping
|
|
90
|
+
else:
|
|
91
|
+
from typing import Mapping, Type
|
|
83
92
|
if sys.version_info >= (3, 12):
|
|
84
93
|
from typing import Literal, Unpack
|
|
85
94
|
else:
|
|
@@ -89,15 +98,7 @@ else:
|
|
|
89
98
|
__all__ = ("KinesisClient",)
|
|
90
99
|
|
|
91
100
|
|
|
92
|
-
class
|
|
93
|
-
MSG_TEMPLATE: str
|
|
94
|
-
|
|
95
|
-
def __init__(self, error_response: Mapping[str, Any], operation_name: str) -> None:
|
|
96
|
-
self.response: Dict[str, Any]
|
|
97
|
-
self.operation_name: str
|
|
98
|
-
|
|
99
|
-
|
|
100
|
-
class Exceptions:
|
|
101
|
+
class Exceptions(BaseClientExceptions):
|
|
101
102
|
AccessDeniedException: Type[BotocoreClientError]
|
|
102
103
|
ClientError: Type[BotocoreClientError]
|
|
103
104
|
ExpiredIteratorException: Type[BotocoreClientError]
|
|
@@ -152,12 +153,6 @@ class KinesisClient(BaseClient):
|
|
|
152
153
|
[Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_kinesis/client/#generate_presigned_url)
|
|
153
154
|
"""
|
|
154
155
|
|
|
155
|
-
def close(self) -> None:
|
|
156
|
-
"""
|
|
157
|
-
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/kinesis/client/close.html)
|
|
158
|
-
[Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_kinesis/client/#close)
|
|
159
|
-
"""
|
|
160
|
-
|
|
161
156
|
def add_tags_to_stream(
|
|
162
157
|
self, **kwargs: Unpack[AddTagsToStreamInputRequestTypeDef]
|
|
163
158
|
) -> EmptyResponseMetadataTypeDef:
|
|
@@ -486,8 +481,10 @@ class KinesisClient(BaseClient):
|
|
|
486
481
|
[Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_kinesis/client/#update_stream_mode)
|
|
487
482
|
"""
|
|
488
483
|
|
|
489
|
-
@overload
|
|
490
|
-
def get_paginator(
|
|
484
|
+
@overload # type: ignore[override]
|
|
485
|
+
def get_paginator( # type: ignore[override]
|
|
486
|
+
self, operation_name: Literal["describe_stream"]
|
|
487
|
+
) -> DescribeStreamPaginator:
|
|
491
488
|
"""
|
|
492
489
|
Create a paginator for an operation.
|
|
493
490
|
|
|
@@ -495,8 +492,10 @@ class KinesisClient(BaseClient):
|
|
|
495
492
|
[Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_kinesis/client/#get_paginator)
|
|
496
493
|
"""
|
|
497
494
|
|
|
498
|
-
@overload
|
|
499
|
-
def get_paginator(
|
|
495
|
+
@overload # type: ignore[override]
|
|
496
|
+
def get_paginator( # type: ignore[override]
|
|
497
|
+
self, operation_name: Literal["list_shards"]
|
|
498
|
+
) -> ListShardsPaginator:
|
|
500
499
|
"""
|
|
501
500
|
Create a paginator for an operation.
|
|
502
501
|
|
|
@@ -504,8 +503,8 @@ class KinesisClient(BaseClient):
|
|
|
504
503
|
[Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_kinesis/client/#get_paginator)
|
|
505
504
|
"""
|
|
506
505
|
|
|
507
|
-
@overload
|
|
508
|
-
def get_paginator(
|
|
506
|
+
@overload # type: ignore[override]
|
|
507
|
+
def get_paginator( # type: ignore[override]
|
|
509
508
|
self, operation_name: Literal["list_stream_consumers"]
|
|
510
509
|
) -> ListStreamConsumersPaginator:
|
|
511
510
|
"""
|
|
@@ -515,8 +514,10 @@ class KinesisClient(BaseClient):
|
|
|
515
514
|
[Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_kinesis/client/#get_paginator)
|
|
516
515
|
"""
|
|
517
516
|
|
|
518
|
-
@overload
|
|
519
|
-
def get_paginator(
|
|
517
|
+
@overload # type: ignore[override]
|
|
518
|
+
def get_paginator( # type: ignore[override]
|
|
519
|
+
self, operation_name: Literal["list_streams"]
|
|
520
|
+
) -> ListStreamsPaginator:
|
|
520
521
|
"""
|
|
521
522
|
Create a paginator for an operation.
|
|
522
523
|
|
|
@@ -524,8 +525,10 @@ class KinesisClient(BaseClient):
|
|
|
524
525
|
[Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_kinesis/client/#get_paginator)
|
|
525
526
|
"""
|
|
526
527
|
|
|
527
|
-
@overload
|
|
528
|
-
def get_waiter(
|
|
528
|
+
@overload # type: ignore[override]
|
|
529
|
+
def get_waiter( # type: ignore[override]
|
|
530
|
+
self, waiter_name: Literal["stream_exists"]
|
|
531
|
+
) -> StreamExistsWaiter:
|
|
529
532
|
"""
|
|
530
533
|
Returns an object that can wait for some condition.
|
|
531
534
|
|
|
@@ -533,8 +536,10 @@ class KinesisClient(BaseClient):
|
|
|
533
536
|
[Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_kinesis/client/#get_waiter)
|
|
534
537
|
"""
|
|
535
538
|
|
|
536
|
-
@overload
|
|
537
|
-
def get_waiter(
|
|
539
|
+
@overload # type: ignore[override]
|
|
540
|
+
def get_waiter( # type: ignore[override]
|
|
541
|
+
self, waiter_name: Literal["stream_not_exists"]
|
|
542
|
+
) -> StreamNotExistsWaiter:
|
|
538
543
|
"""
|
|
539
544
|
Returns an object that can wait for some condition.
|
|
540
545
|
|
types_boto3_kinesis/client.pyi
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
"""
|
|
2
|
-
Type annotations for kinesis service
|
|
2
|
+
Type annotations for kinesis service Client.
|
|
3
3
|
|
|
4
|
-
[
|
|
4
|
+
[Documentation](https://youtype.github.io/types_boto3_docs/types_boto3_kinesis/client/)
|
|
5
5
|
|
|
6
6
|
Usage::
|
|
7
7
|
|
|
@@ -13,13 +13,17 @@ Usage::
|
|
|
13
13
|
client: KinesisClient = session.client("kinesis")
|
|
14
14
|
```
|
|
15
15
|
|
|
16
|
-
Copyright
|
|
16
|
+
Copyright 2025 Vlad Emelianov
|
|
17
17
|
"""
|
|
18
18
|
|
|
19
|
+
from __future__ import annotations
|
|
20
|
+
|
|
19
21
|
import sys
|
|
20
|
-
from typing import Any,
|
|
22
|
+
from typing import Any, overload
|
|
21
23
|
|
|
22
24
|
from botocore.client import BaseClient, ClientMeta
|
|
25
|
+
from botocore.errorfactory import BaseClientExceptions
|
|
26
|
+
from botocore.exceptions import ClientError as BotocoreClientError
|
|
23
27
|
|
|
24
28
|
from .paginator import (
|
|
25
29
|
DescribeStreamPaginator,
|
|
@@ -80,6 +84,11 @@ from .type_defs import (
|
|
|
80
84
|
)
|
|
81
85
|
from .waiter import StreamExistsWaiter, StreamNotExistsWaiter
|
|
82
86
|
|
|
87
|
+
if sys.version_info >= (3, 9):
|
|
88
|
+
from builtins import type as Type
|
|
89
|
+
from collections.abc import Mapping
|
|
90
|
+
else:
|
|
91
|
+
from typing import Mapping, Type
|
|
83
92
|
if sys.version_info >= (3, 12):
|
|
84
93
|
from typing import Literal, Unpack
|
|
85
94
|
else:
|
|
@@ -87,14 +96,7 @@ else:
|
|
|
87
96
|
|
|
88
97
|
__all__ = ("KinesisClient",)
|
|
89
98
|
|
|
90
|
-
class
|
|
91
|
-
MSG_TEMPLATE: str
|
|
92
|
-
|
|
93
|
-
def __init__(self, error_response: Mapping[str, Any], operation_name: str) -> None:
|
|
94
|
-
self.response: Dict[str, Any]
|
|
95
|
-
self.operation_name: str
|
|
96
|
-
|
|
97
|
-
class Exceptions:
|
|
99
|
+
class Exceptions(BaseClientExceptions):
|
|
98
100
|
AccessDeniedException: Type[BotocoreClientError]
|
|
99
101
|
ClientError: Type[BotocoreClientError]
|
|
100
102
|
ExpiredIteratorException: Type[BotocoreClientError]
|
|
@@ -148,12 +150,6 @@ class KinesisClient(BaseClient):
|
|
|
148
150
|
[Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_kinesis/client/#generate_presigned_url)
|
|
149
151
|
"""
|
|
150
152
|
|
|
151
|
-
def close(self) -> None:
|
|
152
|
-
"""
|
|
153
|
-
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/kinesis/client/close.html)
|
|
154
|
-
[Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_kinesis/client/#close)
|
|
155
|
-
"""
|
|
156
|
-
|
|
157
153
|
def add_tags_to_stream(
|
|
158
154
|
self, **kwargs: Unpack[AddTagsToStreamInputRequestTypeDef]
|
|
159
155
|
) -> EmptyResponseMetadataTypeDef:
|
|
@@ -482,8 +478,10 @@ class KinesisClient(BaseClient):
|
|
|
482
478
|
[Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_kinesis/client/#update_stream_mode)
|
|
483
479
|
"""
|
|
484
480
|
|
|
485
|
-
@overload
|
|
486
|
-
def get_paginator(
|
|
481
|
+
@overload # type: ignore[override]
|
|
482
|
+
def get_paginator( # type: ignore[override]
|
|
483
|
+
self, operation_name: Literal["describe_stream"]
|
|
484
|
+
) -> DescribeStreamPaginator:
|
|
487
485
|
"""
|
|
488
486
|
Create a paginator for an operation.
|
|
489
487
|
|
|
@@ -491,8 +489,10 @@ class KinesisClient(BaseClient):
|
|
|
491
489
|
[Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_kinesis/client/#get_paginator)
|
|
492
490
|
"""
|
|
493
491
|
|
|
494
|
-
@overload
|
|
495
|
-
def get_paginator(
|
|
492
|
+
@overload # type: ignore[override]
|
|
493
|
+
def get_paginator( # type: ignore[override]
|
|
494
|
+
self, operation_name: Literal["list_shards"]
|
|
495
|
+
) -> ListShardsPaginator:
|
|
496
496
|
"""
|
|
497
497
|
Create a paginator for an operation.
|
|
498
498
|
|
|
@@ -500,8 +500,8 @@ class KinesisClient(BaseClient):
|
|
|
500
500
|
[Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_kinesis/client/#get_paginator)
|
|
501
501
|
"""
|
|
502
502
|
|
|
503
|
-
@overload
|
|
504
|
-
def get_paginator(
|
|
503
|
+
@overload # type: ignore[override]
|
|
504
|
+
def get_paginator( # type: ignore[override]
|
|
505
505
|
self, operation_name: Literal["list_stream_consumers"]
|
|
506
506
|
) -> ListStreamConsumersPaginator:
|
|
507
507
|
"""
|
|
@@ -511,8 +511,10 @@ class KinesisClient(BaseClient):
|
|
|
511
511
|
[Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_kinesis/client/#get_paginator)
|
|
512
512
|
"""
|
|
513
513
|
|
|
514
|
-
@overload
|
|
515
|
-
def get_paginator(
|
|
514
|
+
@overload # type: ignore[override]
|
|
515
|
+
def get_paginator( # type: ignore[override]
|
|
516
|
+
self, operation_name: Literal["list_streams"]
|
|
517
|
+
) -> ListStreamsPaginator:
|
|
516
518
|
"""
|
|
517
519
|
Create a paginator for an operation.
|
|
518
520
|
|
|
@@ -520,8 +522,10 @@ class KinesisClient(BaseClient):
|
|
|
520
522
|
[Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_kinesis/client/#get_paginator)
|
|
521
523
|
"""
|
|
522
524
|
|
|
523
|
-
@overload
|
|
524
|
-
def get_waiter(
|
|
525
|
+
@overload # type: ignore[override]
|
|
526
|
+
def get_waiter( # type: ignore[override]
|
|
527
|
+
self, waiter_name: Literal["stream_exists"]
|
|
528
|
+
) -> StreamExistsWaiter:
|
|
525
529
|
"""
|
|
526
530
|
Returns an object that can wait for some condition.
|
|
527
531
|
|
|
@@ -529,8 +533,10 @@ class KinesisClient(BaseClient):
|
|
|
529
533
|
[Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_kinesis/client/#get_waiter)
|
|
530
534
|
"""
|
|
531
535
|
|
|
532
|
-
@overload
|
|
533
|
-
def get_waiter(
|
|
536
|
+
@overload # type: ignore[override]
|
|
537
|
+
def get_waiter( # type: ignore[override]
|
|
538
|
+
self, waiter_name: Literal["stream_not_exists"]
|
|
539
|
+
) -> StreamNotExistsWaiter:
|
|
534
540
|
"""
|
|
535
541
|
Returns an object that can wait for some condition.
|
|
536
542
|
|
types_boto3_kinesis/literals.py
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
"""
|
|
2
2
|
Type annotations for kinesis service literal definitions.
|
|
3
3
|
|
|
4
|
-
[
|
|
4
|
+
[Documentation](https://youtype.github.io/types_boto3_docs/types_boto3_kinesis/literals/)
|
|
5
5
|
|
|
6
6
|
Usage::
|
|
7
7
|
|
|
@@ -11,7 +11,7 @@ Usage::
|
|
|
11
11
|
data: ConsumerStatusType = "ACTIVE"
|
|
12
12
|
```
|
|
13
13
|
|
|
14
|
-
Copyright
|
|
14
|
+
Copyright 2025 Vlad Emelianov
|
|
15
15
|
"""
|
|
16
16
|
|
|
17
17
|
import sys
|
|
@@ -114,12 +114,15 @@ ServiceName = Literal[
|
|
|
114
114
|
"b2bi",
|
|
115
115
|
"backup",
|
|
116
116
|
"backup-gateway",
|
|
117
|
+
"backupsearch",
|
|
117
118
|
"batch",
|
|
118
119
|
"bcm-data-exports",
|
|
119
120
|
"bcm-pricing-calculator",
|
|
120
121
|
"bedrock",
|
|
121
122
|
"bedrock-agent",
|
|
122
123
|
"bedrock-agent-runtime",
|
|
124
|
+
"bedrock-data-automation",
|
|
125
|
+
"bedrock-data-automation-runtime",
|
|
123
126
|
"bedrock-runtime",
|
|
124
127
|
"billing",
|
|
125
128
|
"billingconductor",
|
|
@@ -197,6 +200,7 @@ ServiceName = Literal[
|
|
|
197
200
|
"drs",
|
|
198
201
|
"ds",
|
|
199
202
|
"ds-data",
|
|
203
|
+
"dsql",
|
|
200
204
|
"dynamodb",
|
|
201
205
|
"dynamodbstreams",
|
|
202
206
|
"ebs",
|
|
@@ -253,6 +257,7 @@ ServiceName = Literal[
|
|
|
253
257
|
"inspector-scan",
|
|
254
258
|
"inspector2",
|
|
255
259
|
"internetmonitor",
|
|
260
|
+
"invoicing",
|
|
256
261
|
"iot",
|
|
257
262
|
"iot-data",
|
|
258
263
|
"iot-jobs-data",
|
|
@@ -339,6 +344,7 @@ ServiceName = Literal[
|
|
|
339
344
|
"neptune-graph",
|
|
340
345
|
"neptunedata",
|
|
341
346
|
"network-firewall",
|
|
347
|
+
"networkflowmonitor",
|
|
342
348
|
"networkmanager",
|
|
343
349
|
"networkmonitor",
|
|
344
350
|
"notifications",
|
|
@@ -405,6 +411,7 @@ ServiceName = Literal[
|
|
|
405
411
|
"s3",
|
|
406
412
|
"s3control",
|
|
407
413
|
"s3outposts",
|
|
414
|
+
"s3tables",
|
|
408
415
|
"sagemaker",
|
|
409
416
|
"sagemaker-a2i-runtime",
|
|
410
417
|
"sagemaker-edge",
|
|
@@ -417,6 +424,7 @@ ServiceName = Literal[
|
|
|
417
424
|
"schemas",
|
|
418
425
|
"sdb",
|
|
419
426
|
"secretsmanager",
|
|
427
|
+
"security-ir",
|
|
420
428
|
"securityhub",
|
|
421
429
|
"securitylake",
|
|
422
430
|
"serverlessrepo",
|
types_boto3_kinesis/literals.pyi
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
"""
|
|
2
2
|
Type annotations for kinesis service literal definitions.
|
|
3
3
|
|
|
4
|
-
[
|
|
4
|
+
[Documentation](https://youtype.github.io/types_boto3_docs/types_boto3_kinesis/literals/)
|
|
5
5
|
|
|
6
6
|
Usage::
|
|
7
7
|
|
|
@@ -11,7 +11,7 @@ Usage::
|
|
|
11
11
|
data: ConsumerStatusType = "ACTIVE"
|
|
12
12
|
```
|
|
13
13
|
|
|
14
|
-
Copyright
|
|
14
|
+
Copyright 2025 Vlad Emelianov
|
|
15
15
|
"""
|
|
16
16
|
|
|
17
17
|
import sys
|
|
@@ -112,12 +112,15 @@ ServiceName = Literal[
|
|
|
112
112
|
"b2bi",
|
|
113
113
|
"backup",
|
|
114
114
|
"backup-gateway",
|
|
115
|
+
"backupsearch",
|
|
115
116
|
"batch",
|
|
116
117
|
"bcm-data-exports",
|
|
117
118
|
"bcm-pricing-calculator",
|
|
118
119
|
"bedrock",
|
|
119
120
|
"bedrock-agent",
|
|
120
121
|
"bedrock-agent-runtime",
|
|
122
|
+
"bedrock-data-automation",
|
|
123
|
+
"bedrock-data-automation-runtime",
|
|
121
124
|
"bedrock-runtime",
|
|
122
125
|
"billing",
|
|
123
126
|
"billingconductor",
|
|
@@ -195,6 +198,7 @@ ServiceName = Literal[
|
|
|
195
198
|
"drs",
|
|
196
199
|
"ds",
|
|
197
200
|
"ds-data",
|
|
201
|
+
"dsql",
|
|
198
202
|
"dynamodb",
|
|
199
203
|
"dynamodbstreams",
|
|
200
204
|
"ebs",
|
|
@@ -251,6 +255,7 @@ ServiceName = Literal[
|
|
|
251
255
|
"inspector-scan",
|
|
252
256
|
"inspector2",
|
|
253
257
|
"internetmonitor",
|
|
258
|
+
"invoicing",
|
|
254
259
|
"iot",
|
|
255
260
|
"iot-data",
|
|
256
261
|
"iot-jobs-data",
|
|
@@ -337,6 +342,7 @@ ServiceName = Literal[
|
|
|
337
342
|
"neptune-graph",
|
|
338
343
|
"neptunedata",
|
|
339
344
|
"network-firewall",
|
|
345
|
+
"networkflowmonitor",
|
|
340
346
|
"networkmanager",
|
|
341
347
|
"networkmonitor",
|
|
342
348
|
"notifications",
|
|
@@ -403,6 +409,7 @@ ServiceName = Literal[
|
|
|
403
409
|
"s3",
|
|
404
410
|
"s3control",
|
|
405
411
|
"s3outposts",
|
|
412
|
+
"s3tables",
|
|
406
413
|
"sagemaker",
|
|
407
414
|
"sagemaker-a2i-runtime",
|
|
408
415
|
"sagemaker-edge",
|
|
@@ -415,6 +422,7 @@ ServiceName = Literal[
|
|
|
415
422
|
"schemas",
|
|
416
423
|
"sdb",
|
|
417
424
|
"secretsmanager",
|
|
425
|
+
"security-ir",
|
|
418
426
|
"securityhub",
|
|
419
427
|
"securitylake",
|
|
420
428
|
"serverlessrepo",
|
types_boto3_kinesis/paginator.py
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
"""
|
|
2
2
|
Type annotations for kinesis service client paginators.
|
|
3
3
|
|
|
4
|
-
[
|
|
4
|
+
[Documentation](https://youtype.github.io/types_boto3_docs/types_boto3_kinesis/paginators/)
|
|
5
5
|
|
|
6
6
|
Usage::
|
|
7
7
|
|
|
@@ -25,22 +25,24 @@ Usage::
|
|
|
25
25
|
list_streams_paginator: ListStreamsPaginator = client.get_paginator("list_streams")
|
|
26
26
|
```
|
|
27
27
|
|
|
28
|
-
Copyright
|
|
28
|
+
Copyright 2025 Vlad Emelianov
|
|
29
29
|
"""
|
|
30
30
|
|
|
31
|
+
from __future__ import annotations
|
|
32
|
+
|
|
31
33
|
import sys
|
|
32
|
-
from typing import
|
|
34
|
+
from typing import TYPE_CHECKING
|
|
33
35
|
|
|
34
36
|
from botocore.paginate import PageIterator, Paginator
|
|
35
37
|
|
|
36
38
|
from .type_defs import (
|
|
37
|
-
|
|
39
|
+
DescribeStreamInputPaginateTypeDef,
|
|
38
40
|
DescribeStreamOutputTypeDef,
|
|
39
|
-
|
|
41
|
+
ListShardsInputPaginateTypeDef,
|
|
40
42
|
ListShardsOutputTypeDef,
|
|
41
|
-
|
|
43
|
+
ListStreamConsumersInputPaginateTypeDef,
|
|
42
44
|
ListStreamConsumersOutputTypeDef,
|
|
43
|
-
|
|
45
|
+
ListStreamsInputPaginateTypeDef,
|
|
44
46
|
ListStreamsOutputTypeDef,
|
|
45
47
|
)
|
|
46
48
|
|
|
@@ -58,70 +60,84 @@ __all__ = (
|
|
|
58
60
|
)
|
|
59
61
|
|
|
60
62
|
|
|
61
|
-
|
|
62
|
-
|
|
63
|
-
|
|
64
|
-
|
|
65
|
-
def __iter__(self) -> Iterator[_ItemTypeDef]:
|
|
66
|
-
"""
|
|
67
|
-
Proxy method to specify iterator item type.
|
|
68
|
-
"""
|
|
63
|
+
if TYPE_CHECKING:
|
|
64
|
+
_DescribeStreamPaginatorBase = Paginator[DescribeStreamOutputTypeDef]
|
|
65
|
+
else:
|
|
66
|
+
_DescribeStreamPaginatorBase = Paginator # type: ignore[assignment]
|
|
69
67
|
|
|
70
68
|
|
|
71
|
-
class DescribeStreamPaginator(
|
|
69
|
+
class DescribeStreamPaginator(_DescribeStreamPaginatorBase):
|
|
72
70
|
"""
|
|
73
71
|
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/kinesis/paginator/DescribeStream.html#Kinesis.Paginator.DescribeStream)
|
|
74
72
|
[Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_kinesis/paginators/#describestreampaginator)
|
|
75
73
|
"""
|
|
76
74
|
|
|
77
|
-
def paginate(
|
|
78
|
-
self, **kwargs: Unpack[
|
|
79
|
-
) ->
|
|
75
|
+
def paginate( # type: ignore[override]
|
|
76
|
+
self, **kwargs: Unpack[DescribeStreamInputPaginateTypeDef]
|
|
77
|
+
) -> PageIterator[DescribeStreamOutputTypeDef]:
|
|
80
78
|
"""
|
|
81
79
|
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/kinesis/paginator/DescribeStream.html#Kinesis.Paginator.DescribeStream.paginate)
|
|
82
80
|
[Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_kinesis/paginators/#describestreampaginator)
|
|
83
81
|
"""
|
|
84
82
|
|
|
85
83
|
|
|
86
|
-
|
|
84
|
+
if TYPE_CHECKING:
|
|
85
|
+
_ListShardsPaginatorBase = Paginator[ListShardsOutputTypeDef]
|
|
86
|
+
else:
|
|
87
|
+
_ListShardsPaginatorBase = Paginator # type: ignore[assignment]
|
|
88
|
+
|
|
89
|
+
|
|
90
|
+
class ListShardsPaginator(_ListShardsPaginatorBase):
|
|
87
91
|
"""
|
|
88
92
|
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/kinesis/paginator/ListShards.html#Kinesis.Paginator.ListShards)
|
|
89
93
|
[Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_kinesis/paginators/#listshardspaginator)
|
|
90
94
|
"""
|
|
91
95
|
|
|
92
|
-
def paginate(
|
|
93
|
-
self, **kwargs: Unpack[
|
|
94
|
-
) ->
|
|
96
|
+
def paginate( # type: ignore[override]
|
|
97
|
+
self, **kwargs: Unpack[ListShardsInputPaginateTypeDef]
|
|
98
|
+
) -> PageIterator[ListShardsOutputTypeDef]:
|
|
95
99
|
"""
|
|
96
100
|
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/kinesis/paginator/ListShards.html#Kinesis.Paginator.ListShards.paginate)
|
|
97
101
|
[Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_kinesis/paginators/#listshardspaginator)
|
|
98
102
|
"""
|
|
99
103
|
|
|
100
104
|
|
|
101
|
-
|
|
105
|
+
if TYPE_CHECKING:
|
|
106
|
+
_ListStreamConsumersPaginatorBase = Paginator[ListStreamConsumersOutputTypeDef]
|
|
107
|
+
else:
|
|
108
|
+
_ListStreamConsumersPaginatorBase = Paginator # type: ignore[assignment]
|
|
109
|
+
|
|
110
|
+
|
|
111
|
+
class ListStreamConsumersPaginator(_ListStreamConsumersPaginatorBase):
|
|
102
112
|
"""
|
|
103
113
|
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/kinesis/paginator/ListStreamConsumers.html#Kinesis.Paginator.ListStreamConsumers)
|
|
104
114
|
[Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_kinesis/paginators/#liststreamconsumerspaginator)
|
|
105
115
|
"""
|
|
106
116
|
|
|
107
|
-
def paginate(
|
|
108
|
-
self, **kwargs: Unpack[
|
|
109
|
-
) ->
|
|
117
|
+
def paginate( # type: ignore[override]
|
|
118
|
+
self, **kwargs: Unpack[ListStreamConsumersInputPaginateTypeDef]
|
|
119
|
+
) -> PageIterator[ListStreamConsumersOutputTypeDef]:
|
|
110
120
|
"""
|
|
111
121
|
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/kinesis/paginator/ListStreamConsumers.html#Kinesis.Paginator.ListStreamConsumers.paginate)
|
|
112
122
|
[Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_kinesis/paginators/#liststreamconsumerspaginator)
|
|
113
123
|
"""
|
|
114
124
|
|
|
115
125
|
|
|
116
|
-
|
|
126
|
+
if TYPE_CHECKING:
|
|
127
|
+
_ListStreamsPaginatorBase = Paginator[ListStreamsOutputTypeDef]
|
|
128
|
+
else:
|
|
129
|
+
_ListStreamsPaginatorBase = Paginator # type: ignore[assignment]
|
|
130
|
+
|
|
131
|
+
|
|
132
|
+
class ListStreamsPaginator(_ListStreamsPaginatorBase):
|
|
117
133
|
"""
|
|
118
134
|
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/kinesis/paginator/ListStreams.html#Kinesis.Paginator.ListStreams)
|
|
119
135
|
[Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_kinesis/paginators/#liststreamspaginator)
|
|
120
136
|
"""
|
|
121
137
|
|
|
122
|
-
def paginate(
|
|
123
|
-
self, **kwargs: Unpack[
|
|
124
|
-
) ->
|
|
138
|
+
def paginate( # type: ignore[override]
|
|
139
|
+
self, **kwargs: Unpack[ListStreamsInputPaginateTypeDef]
|
|
140
|
+
) -> PageIterator[ListStreamsOutputTypeDef]:
|
|
125
141
|
"""
|
|
126
142
|
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/kinesis/paginator/ListStreams.html#Kinesis.Paginator.ListStreams.paginate)
|
|
127
143
|
[Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_kinesis/paginators/#liststreamspaginator)
|