types-boto3-kinesis 1.35.93__py3-none-any.whl → 1.37.0__py3-none-any.whl
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- types_boto3_kinesis/__init__.py +4 -2
- types_boto3_kinesis/__init__.pyi +4 -2
- types_boto3_kinesis/__main__.py +4 -4
- types_boto3_kinesis/client.py +64 -74
- types_boto3_kinesis/client.pyi +64 -74
- types_boto3_kinesis/literals.py +4 -5
- types_boto3_kinesis/literals.pyi +4 -5
- types_boto3_kinesis/paginator.py +2 -2
- types_boto3_kinesis/paginator.pyi +2 -2
- types_boto3_kinesis/type_defs.py +75 -66
- types_boto3_kinesis/type_defs.pyi +74 -66
- types_boto3_kinesis/version.py +1 -1
- types_boto3_kinesis/waiter.py +4 -4
- types_boto3_kinesis/waiter.pyi +4 -4
- {types_boto3_kinesis-1.35.93.dist-info → types_boto3_kinesis-1.37.0.dist-info}/METADATA +27 -11
- types_boto3_kinesis-1.37.0.dist-info/RECORD +20 -0
- {types_boto3_kinesis-1.35.93.dist-info → types_boto3_kinesis-1.37.0.dist-info}/WHEEL +1 -1
- types_boto3_kinesis-1.35.93.dist-info/RECORD +0 -20
- {types_boto3_kinesis-1.35.93.dist-info → types_boto3_kinesis-1.37.0.dist-info}/LICENSE +0 -0
- {types_boto3_kinesis-1.35.93.dist-info → types_boto3_kinesis-1.37.0.dist-info}/top_level.txt +0 -0
|
@@ -3,15 +3,15 @@ Type annotations for kinesis service type definitions.
|
|
|
3
3
|
|
|
4
4
|
[Documentation](https://youtype.github.io/types_boto3_docs/types_boto3_kinesis/type_defs/)
|
|
5
5
|
|
|
6
|
+
Copyright 2025 Vlad Emelianov
|
|
7
|
+
|
|
6
8
|
Usage::
|
|
7
9
|
|
|
8
10
|
```python
|
|
9
|
-
from types_boto3_kinesis.type_defs import
|
|
11
|
+
from types_boto3_kinesis.type_defs import AddTagsToStreamInputTypeDef
|
|
10
12
|
|
|
11
|
-
data:
|
|
13
|
+
data: AddTagsToStreamInputTypeDef = ...
|
|
12
14
|
```
|
|
13
|
-
|
|
14
|
-
Copyright 2025 Vlad Emelianov
|
|
15
15
|
"""
|
|
16
16
|
|
|
17
17
|
from __future__ import annotations
|
|
@@ -45,38 +45,39 @@ else:
|
|
|
45
45
|
from typing_extensions import Literal, NotRequired, TypedDict
|
|
46
46
|
|
|
47
47
|
__all__ = (
|
|
48
|
-
"
|
|
48
|
+
"AddTagsToStreamInputTypeDef",
|
|
49
49
|
"BlobTypeDef",
|
|
50
50
|
"ChildShardTypeDef",
|
|
51
51
|
"ConsumerDescriptionTypeDef",
|
|
52
52
|
"ConsumerTypeDef",
|
|
53
|
-
"
|
|
54
|
-
"
|
|
55
|
-
"
|
|
56
|
-
"
|
|
57
|
-
"
|
|
53
|
+
"CreateStreamInputTypeDef",
|
|
54
|
+
"DecreaseStreamRetentionPeriodInputTypeDef",
|
|
55
|
+
"DeleteResourcePolicyInputTypeDef",
|
|
56
|
+
"DeleteStreamInputTypeDef",
|
|
57
|
+
"DeregisterStreamConsumerInputTypeDef",
|
|
58
58
|
"DescribeLimitsOutputTypeDef",
|
|
59
|
-
"
|
|
59
|
+
"DescribeStreamConsumerInputTypeDef",
|
|
60
60
|
"DescribeStreamConsumerOutputTypeDef",
|
|
61
61
|
"DescribeStreamInputPaginateTypeDef",
|
|
62
|
-
"
|
|
62
|
+
"DescribeStreamInputTypeDef",
|
|
63
|
+
"DescribeStreamInputWaitExtraTypeDef",
|
|
63
64
|
"DescribeStreamInputWaitTypeDef",
|
|
64
65
|
"DescribeStreamOutputTypeDef",
|
|
65
|
-
"
|
|
66
|
+
"DescribeStreamSummaryInputTypeDef",
|
|
66
67
|
"DescribeStreamSummaryOutputTypeDef",
|
|
67
|
-
"
|
|
68
|
+
"DisableEnhancedMonitoringInputTypeDef",
|
|
68
69
|
"EmptyResponseMetadataTypeDef",
|
|
69
|
-
"
|
|
70
|
+
"EnableEnhancedMonitoringInputTypeDef",
|
|
70
71
|
"EnhancedMetricsTypeDef",
|
|
71
72
|
"EnhancedMonitoringOutputTypeDef",
|
|
72
|
-
"
|
|
73
|
+
"GetRecordsInputTypeDef",
|
|
73
74
|
"GetRecordsOutputTypeDef",
|
|
74
|
-
"
|
|
75
|
+
"GetResourcePolicyInputTypeDef",
|
|
75
76
|
"GetResourcePolicyOutputTypeDef",
|
|
76
|
-
"
|
|
77
|
+
"GetShardIteratorInputTypeDef",
|
|
77
78
|
"GetShardIteratorOutputTypeDef",
|
|
78
79
|
"HashKeyRangeTypeDef",
|
|
79
|
-
"
|
|
80
|
+
"IncreaseStreamRetentionPeriodInputTypeDef",
|
|
80
81
|
"InternalFailureExceptionTypeDef",
|
|
81
82
|
"KMSAccessDeniedExceptionTypeDef",
|
|
82
83
|
"KMSDisabledExceptionTypeDef",
|
|
@@ -85,56 +86,56 @@ __all__ = (
|
|
|
85
86
|
"KMSOptInRequiredTypeDef",
|
|
86
87
|
"KMSThrottlingExceptionTypeDef",
|
|
87
88
|
"ListShardsInputPaginateTypeDef",
|
|
88
|
-
"
|
|
89
|
+
"ListShardsInputTypeDef",
|
|
89
90
|
"ListShardsOutputTypeDef",
|
|
90
91
|
"ListStreamConsumersInputPaginateTypeDef",
|
|
91
|
-
"
|
|
92
|
+
"ListStreamConsumersInputTypeDef",
|
|
92
93
|
"ListStreamConsumersOutputTypeDef",
|
|
93
94
|
"ListStreamsInputPaginateTypeDef",
|
|
94
|
-
"
|
|
95
|
+
"ListStreamsInputTypeDef",
|
|
95
96
|
"ListStreamsOutputTypeDef",
|
|
96
|
-
"
|
|
97
|
+
"ListTagsForStreamInputTypeDef",
|
|
97
98
|
"ListTagsForStreamOutputTypeDef",
|
|
98
|
-
"
|
|
99
|
+
"MergeShardsInputTypeDef",
|
|
99
100
|
"PaginatorConfigTypeDef",
|
|
100
|
-
"
|
|
101
|
+
"PutRecordInputTypeDef",
|
|
101
102
|
"PutRecordOutputTypeDef",
|
|
102
|
-
"
|
|
103
|
+
"PutRecordsInputTypeDef",
|
|
103
104
|
"PutRecordsOutputTypeDef",
|
|
104
105
|
"PutRecordsRequestEntryTypeDef",
|
|
105
106
|
"PutRecordsResultEntryTypeDef",
|
|
106
|
-
"
|
|
107
|
+
"PutResourcePolicyInputTypeDef",
|
|
107
108
|
"RecordTypeDef",
|
|
108
|
-
"
|
|
109
|
+
"RegisterStreamConsumerInputTypeDef",
|
|
109
110
|
"RegisterStreamConsumerOutputTypeDef",
|
|
110
|
-
"
|
|
111
|
+
"RemoveTagsFromStreamInputTypeDef",
|
|
111
112
|
"ResourceInUseExceptionTypeDef",
|
|
112
113
|
"ResourceNotFoundExceptionTypeDef",
|
|
113
114
|
"ResponseMetadataTypeDef",
|
|
114
115
|
"SequenceNumberRangeTypeDef",
|
|
115
116
|
"ShardFilterTypeDef",
|
|
116
117
|
"ShardTypeDef",
|
|
117
|
-
"
|
|
118
|
-
"
|
|
118
|
+
"SplitShardInputTypeDef",
|
|
119
|
+
"StartStreamEncryptionInputTypeDef",
|
|
119
120
|
"StartingPositionTypeDef",
|
|
120
|
-
"
|
|
121
|
+
"StopStreamEncryptionInputTypeDef",
|
|
121
122
|
"StreamDescriptionSummaryTypeDef",
|
|
122
123
|
"StreamDescriptionTypeDef",
|
|
123
124
|
"StreamModeDetailsTypeDef",
|
|
124
125
|
"StreamSummaryTypeDef",
|
|
125
126
|
"SubscribeToShardEventStreamTypeDef",
|
|
126
127
|
"SubscribeToShardEventTypeDef",
|
|
127
|
-
"
|
|
128
|
+
"SubscribeToShardInputTypeDef",
|
|
128
129
|
"SubscribeToShardOutputTypeDef",
|
|
129
130
|
"TagTypeDef",
|
|
130
131
|
"TimestampTypeDef",
|
|
131
|
-
"
|
|
132
|
+
"UpdateShardCountInputTypeDef",
|
|
132
133
|
"UpdateShardCountOutputTypeDef",
|
|
133
|
-
"
|
|
134
|
+
"UpdateStreamModeInputTypeDef",
|
|
134
135
|
"WaiterConfigTypeDef",
|
|
135
136
|
)
|
|
136
137
|
|
|
137
|
-
class
|
|
138
|
+
class AddTagsToStreamInputTypeDef(TypedDict):
|
|
138
139
|
Tags: Mapping[str, str]
|
|
139
140
|
StreamName: NotRequired[str]
|
|
140
141
|
StreamARN: NotRequired[str]
|
|
@@ -161,20 +162,20 @@ class ConsumerTypeDef(TypedDict):
|
|
|
161
162
|
class StreamModeDetailsTypeDef(TypedDict):
|
|
162
163
|
StreamMode: StreamModeType
|
|
163
164
|
|
|
164
|
-
class
|
|
165
|
+
class DecreaseStreamRetentionPeriodInputTypeDef(TypedDict):
|
|
165
166
|
RetentionPeriodHours: int
|
|
166
167
|
StreamName: NotRequired[str]
|
|
167
168
|
StreamARN: NotRequired[str]
|
|
168
169
|
|
|
169
|
-
class
|
|
170
|
+
class DeleteResourcePolicyInputTypeDef(TypedDict):
|
|
170
171
|
ResourceARN: str
|
|
171
172
|
|
|
172
|
-
class
|
|
173
|
+
class DeleteStreamInputTypeDef(TypedDict):
|
|
173
174
|
StreamName: NotRequired[str]
|
|
174
175
|
EnforceConsumerDeletion: NotRequired[bool]
|
|
175
176
|
StreamARN: NotRequired[str]
|
|
176
177
|
|
|
177
|
-
class
|
|
178
|
+
class DeregisterStreamConsumerInputTypeDef(TypedDict):
|
|
178
179
|
StreamARN: NotRequired[str]
|
|
179
180
|
ConsumerName: NotRequired[str]
|
|
180
181
|
ConsumerARN: NotRequired[str]
|
|
@@ -186,7 +187,7 @@ class ResponseMetadataTypeDef(TypedDict):
|
|
|
186
187
|
RetryAttempts: int
|
|
187
188
|
HostId: NotRequired[str]
|
|
188
189
|
|
|
189
|
-
class
|
|
190
|
+
class DescribeStreamConsumerInputTypeDef(TypedDict):
|
|
190
191
|
StreamARN: NotRequired[str]
|
|
191
192
|
ConsumerName: NotRequired[str]
|
|
192
193
|
ConsumerARN: NotRequired[str]
|
|
@@ -196,7 +197,7 @@ class PaginatorConfigTypeDef(TypedDict):
|
|
|
196
197
|
PageSize: NotRequired[int]
|
|
197
198
|
StartingToken: NotRequired[str]
|
|
198
199
|
|
|
199
|
-
class
|
|
200
|
+
class DescribeStreamInputTypeDef(TypedDict):
|
|
200
201
|
StreamName: NotRequired[str]
|
|
201
202
|
Limit: NotRequired[int]
|
|
202
203
|
ExclusiveStartShardId: NotRequired[str]
|
|
@@ -206,16 +207,16 @@ class WaiterConfigTypeDef(TypedDict):
|
|
|
206
207
|
Delay: NotRequired[int]
|
|
207
208
|
MaxAttempts: NotRequired[int]
|
|
208
209
|
|
|
209
|
-
class
|
|
210
|
+
class DescribeStreamSummaryInputTypeDef(TypedDict):
|
|
210
211
|
StreamName: NotRequired[str]
|
|
211
212
|
StreamARN: NotRequired[str]
|
|
212
213
|
|
|
213
|
-
class
|
|
214
|
+
class DisableEnhancedMonitoringInputTypeDef(TypedDict):
|
|
214
215
|
ShardLevelMetrics: Sequence[MetricsNameType]
|
|
215
216
|
StreamName: NotRequired[str]
|
|
216
217
|
StreamARN: NotRequired[str]
|
|
217
218
|
|
|
218
|
-
class
|
|
219
|
+
class EnableEnhancedMonitoringInputTypeDef(TypedDict):
|
|
219
220
|
ShardLevelMetrics: Sequence[MetricsNameType]
|
|
220
221
|
StreamName: NotRequired[str]
|
|
221
222
|
StreamARN: NotRequired[str]
|
|
@@ -223,7 +224,7 @@ class EnableEnhancedMonitoringInputRequestTypeDef(TypedDict):
|
|
|
223
224
|
class EnhancedMetricsTypeDef(TypedDict):
|
|
224
225
|
ShardLevelMetrics: NotRequired[List[MetricsNameType]]
|
|
225
226
|
|
|
226
|
-
class
|
|
227
|
+
class GetRecordsInputTypeDef(TypedDict):
|
|
227
228
|
ShardIterator: str
|
|
228
229
|
Limit: NotRequired[int]
|
|
229
230
|
StreamARN: NotRequired[str]
|
|
@@ -235,12 +236,12 @@ class RecordTypeDef(TypedDict):
|
|
|
235
236
|
ApproximateArrivalTimestamp: NotRequired[datetime]
|
|
236
237
|
EncryptionType: NotRequired[EncryptionTypeType]
|
|
237
238
|
|
|
238
|
-
class
|
|
239
|
+
class GetResourcePolicyInputTypeDef(TypedDict):
|
|
239
240
|
ResourceARN: str
|
|
240
241
|
|
|
241
242
|
TimestampTypeDef = Union[datetime, str]
|
|
242
243
|
|
|
243
|
-
class
|
|
244
|
+
class IncreaseStreamRetentionPeriodInputTypeDef(TypedDict):
|
|
244
245
|
RetentionPeriodHours: int
|
|
245
246
|
StreamName: NotRequired[str]
|
|
246
247
|
StreamARN: NotRequired[str]
|
|
@@ -266,12 +267,12 @@ class KMSOptInRequiredTypeDef(TypedDict):
|
|
|
266
267
|
class KMSThrottlingExceptionTypeDef(TypedDict):
|
|
267
268
|
message: NotRequired[str]
|
|
268
269
|
|
|
269
|
-
class
|
|
270
|
+
class ListStreamsInputTypeDef(TypedDict):
|
|
270
271
|
Limit: NotRequired[int]
|
|
271
272
|
ExclusiveStartStreamName: NotRequired[str]
|
|
272
273
|
NextToken: NotRequired[str]
|
|
273
274
|
|
|
274
|
-
class
|
|
275
|
+
class ListTagsForStreamInputTypeDef(TypedDict):
|
|
275
276
|
StreamName: NotRequired[str]
|
|
276
277
|
ExclusiveStartTagKey: NotRequired[str]
|
|
277
278
|
Limit: NotRequired[int]
|
|
@@ -281,7 +282,7 @@ class TagTypeDef(TypedDict):
|
|
|
281
282
|
Key: str
|
|
282
283
|
Value: NotRequired[str]
|
|
283
284
|
|
|
284
|
-
class
|
|
285
|
+
class MergeShardsInputTypeDef(TypedDict):
|
|
285
286
|
ShardToMerge: str
|
|
286
287
|
AdjacentShardToMerge: str
|
|
287
288
|
StreamName: NotRequired[str]
|
|
@@ -293,15 +294,15 @@ class PutRecordsResultEntryTypeDef(TypedDict):
|
|
|
293
294
|
ErrorCode: NotRequired[str]
|
|
294
295
|
ErrorMessage: NotRequired[str]
|
|
295
296
|
|
|
296
|
-
class
|
|
297
|
+
class PutResourcePolicyInputTypeDef(TypedDict):
|
|
297
298
|
ResourceARN: str
|
|
298
299
|
Policy: str
|
|
299
300
|
|
|
300
|
-
class
|
|
301
|
+
class RegisterStreamConsumerInputTypeDef(TypedDict):
|
|
301
302
|
StreamARN: str
|
|
302
303
|
ConsumerName: str
|
|
303
304
|
|
|
304
|
-
class
|
|
305
|
+
class RemoveTagsFromStreamInputTypeDef(TypedDict):
|
|
305
306
|
TagKeys: Sequence[str]
|
|
306
307
|
StreamName: NotRequired[str]
|
|
307
308
|
StreamARN: NotRequired[str]
|
|
@@ -316,31 +317,31 @@ class SequenceNumberRangeTypeDef(TypedDict):
|
|
|
316
317
|
StartingSequenceNumber: str
|
|
317
318
|
EndingSequenceNumber: NotRequired[str]
|
|
318
319
|
|
|
319
|
-
class
|
|
320
|
+
class SplitShardInputTypeDef(TypedDict):
|
|
320
321
|
ShardToSplit: str
|
|
321
322
|
NewStartingHashKey: str
|
|
322
323
|
StreamName: NotRequired[str]
|
|
323
324
|
StreamARN: NotRequired[str]
|
|
324
325
|
|
|
325
|
-
class
|
|
326
|
+
class StartStreamEncryptionInputTypeDef(TypedDict):
|
|
326
327
|
EncryptionType: EncryptionTypeType
|
|
327
328
|
KeyId: str
|
|
328
329
|
StreamName: NotRequired[str]
|
|
329
330
|
StreamARN: NotRequired[str]
|
|
330
331
|
|
|
331
|
-
class
|
|
332
|
+
class StopStreamEncryptionInputTypeDef(TypedDict):
|
|
332
333
|
EncryptionType: EncryptionTypeType
|
|
333
334
|
KeyId: str
|
|
334
335
|
StreamName: NotRequired[str]
|
|
335
336
|
StreamARN: NotRequired[str]
|
|
336
337
|
|
|
337
|
-
class
|
|
338
|
+
class UpdateShardCountInputTypeDef(TypedDict):
|
|
338
339
|
TargetShardCount: int
|
|
339
340
|
ScalingType: Literal["UNIFORM_SCALING"]
|
|
340
341
|
StreamName: NotRequired[str]
|
|
341
342
|
StreamARN: NotRequired[str]
|
|
342
343
|
|
|
343
|
-
class
|
|
344
|
+
class PutRecordInputTypeDef(TypedDict):
|
|
344
345
|
Data: BlobTypeDef
|
|
345
346
|
PartitionKey: str
|
|
346
347
|
StreamName: NotRequired[str]
|
|
@@ -358,7 +359,7 @@ class ChildShardTypeDef(TypedDict):
|
|
|
358
359
|
ParentShards: List[str]
|
|
359
360
|
HashKeyRange: HashKeyRangeTypeDef
|
|
360
361
|
|
|
361
|
-
class
|
|
362
|
+
class CreateStreamInputTypeDef(TypedDict):
|
|
362
363
|
StreamName: str
|
|
363
364
|
ShardCount: NotRequired[int]
|
|
364
365
|
StreamModeDetails: NotRequired[StreamModeDetailsTypeDef]
|
|
@@ -371,7 +372,7 @@ class StreamSummaryTypeDef(TypedDict):
|
|
|
371
372
|
StreamModeDetails: NotRequired[StreamModeDetailsTypeDef]
|
|
372
373
|
StreamCreationTimestamp: NotRequired[datetime]
|
|
373
374
|
|
|
374
|
-
class
|
|
375
|
+
class UpdateStreamModeInputTypeDef(TypedDict):
|
|
375
376
|
StreamARN: str
|
|
376
377
|
StreamModeDetails: StreamModeDetailsTypeDef
|
|
377
378
|
|
|
@@ -435,6 +436,13 @@ class ListStreamsInputPaginateTypeDef(TypedDict):
|
|
|
435
436
|
ExclusiveStartStreamName: NotRequired[str]
|
|
436
437
|
PaginationConfig: NotRequired[PaginatorConfigTypeDef]
|
|
437
438
|
|
|
439
|
+
class DescribeStreamInputWaitExtraTypeDef(TypedDict):
|
|
440
|
+
StreamName: NotRequired[str]
|
|
441
|
+
Limit: NotRequired[int]
|
|
442
|
+
ExclusiveStartShardId: NotRequired[str]
|
|
443
|
+
StreamARN: NotRequired[str]
|
|
444
|
+
WaiterConfig: NotRequired[WaiterConfigTypeDef]
|
|
445
|
+
|
|
438
446
|
class DescribeStreamInputWaitTypeDef(TypedDict):
|
|
439
447
|
StreamName: NotRequired[str]
|
|
440
448
|
Limit: NotRequired[int]
|
|
@@ -455,7 +463,7 @@ class StreamDescriptionSummaryTypeDef(TypedDict):
|
|
|
455
463
|
KeyId: NotRequired[str]
|
|
456
464
|
ConsumerCount: NotRequired[int]
|
|
457
465
|
|
|
458
|
-
class
|
|
466
|
+
class GetShardIteratorInputTypeDef(TypedDict):
|
|
459
467
|
ShardId: str
|
|
460
468
|
ShardIteratorType: ShardIteratorTypeType
|
|
461
469
|
StreamName: NotRequired[str]
|
|
@@ -468,7 +476,7 @@ class ListStreamConsumersInputPaginateTypeDef(TypedDict):
|
|
|
468
476
|
StreamCreationTimestamp: NotRequired[TimestampTypeDef]
|
|
469
477
|
PaginationConfig: NotRequired[PaginatorConfigTypeDef]
|
|
470
478
|
|
|
471
|
-
class
|
|
479
|
+
class ListStreamConsumersInputTypeDef(TypedDict):
|
|
472
480
|
StreamARN: str
|
|
473
481
|
NextToken: NotRequired[str]
|
|
474
482
|
MaxResults: NotRequired[int]
|
|
@@ -509,7 +517,7 @@ class ShardTypeDef(TypedDict):
|
|
|
509
517
|
ParentShardId: NotRequired[str]
|
|
510
518
|
AdjacentParentShardId: NotRequired[str]
|
|
511
519
|
|
|
512
|
-
class
|
|
520
|
+
class PutRecordsInputTypeDef(TypedDict):
|
|
513
521
|
Records: Sequence[PutRecordsRequestEntryTypeDef]
|
|
514
522
|
StreamName: NotRequired[str]
|
|
515
523
|
StreamARN: NotRequired[str]
|
|
@@ -546,7 +554,7 @@ class ListShardsInputPaginateTypeDef(TypedDict):
|
|
|
546
554
|
StreamARN: NotRequired[str]
|
|
547
555
|
PaginationConfig: NotRequired[PaginatorConfigTypeDef]
|
|
548
556
|
|
|
549
|
-
class
|
|
557
|
+
class ListShardsInputTypeDef(TypedDict):
|
|
550
558
|
StreamName: NotRequired[str]
|
|
551
559
|
NextToken: NotRequired[str]
|
|
552
560
|
ExclusiveStartShardId: NotRequired[str]
|
|
@@ -555,7 +563,7 @@ class ListShardsInputRequestTypeDef(TypedDict):
|
|
|
555
563
|
ShardFilter: NotRequired[ShardFilterTypeDef]
|
|
556
564
|
StreamARN: NotRequired[str]
|
|
557
565
|
|
|
558
|
-
class
|
|
566
|
+
class SubscribeToShardInputTypeDef(TypedDict):
|
|
559
567
|
ConsumerARN: str
|
|
560
568
|
ShardId: str
|
|
561
569
|
StartingPosition: StartingPositionTypeDef
|
types_boto3_kinesis/version.py
CHANGED
types_boto3_kinesis/waiter.py
CHANGED
|
@@ -3,6 +3,8 @@ Type annotations for kinesis service client waiters.
|
|
|
3
3
|
|
|
4
4
|
[Documentation](https://youtype.github.io/types_boto3_docs/types_boto3_kinesis/waiters/)
|
|
5
5
|
|
|
6
|
+
Copyright 2025 Vlad Emelianov
|
|
7
|
+
|
|
6
8
|
Usage::
|
|
7
9
|
|
|
8
10
|
```python
|
|
@@ -20,8 +22,6 @@ Usage::
|
|
|
20
22
|
stream_exists_waiter: StreamExistsWaiter = client.get_waiter("stream_exists")
|
|
21
23
|
stream_not_exists_waiter: StreamNotExistsWaiter = client.get_waiter("stream_not_exists")
|
|
22
24
|
```
|
|
23
|
-
|
|
24
|
-
Copyright 2025 Vlad Emelianov
|
|
25
25
|
"""
|
|
26
26
|
|
|
27
27
|
from __future__ import annotations
|
|
@@ -30,7 +30,7 @@ import sys
|
|
|
30
30
|
|
|
31
31
|
from botocore.waiter import Waiter
|
|
32
32
|
|
|
33
|
-
from .type_defs import DescribeStreamInputWaitTypeDef
|
|
33
|
+
from .type_defs import DescribeStreamInputWaitExtraTypeDef, DescribeStreamInputWaitTypeDef
|
|
34
34
|
|
|
35
35
|
if sys.version_info >= (3, 12):
|
|
36
36
|
from typing import Unpack
|
|
@@ -63,7 +63,7 @@ class StreamNotExistsWaiter(Waiter):
|
|
|
63
63
|
"""
|
|
64
64
|
|
|
65
65
|
def wait( # type: ignore[override]
|
|
66
|
-
self, **kwargs: Unpack[
|
|
66
|
+
self, **kwargs: Unpack[DescribeStreamInputWaitExtraTypeDef]
|
|
67
67
|
) -> None:
|
|
68
68
|
"""
|
|
69
69
|
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/kinesis/waiter/StreamNotExists.html#Kinesis.Waiter.StreamNotExists.wait)
|
types_boto3_kinesis/waiter.pyi
CHANGED
|
@@ -3,6 +3,8 @@ Type annotations for kinesis service client waiters.
|
|
|
3
3
|
|
|
4
4
|
[Documentation](https://youtype.github.io/types_boto3_docs/types_boto3_kinesis/waiters/)
|
|
5
5
|
|
|
6
|
+
Copyright 2025 Vlad Emelianov
|
|
7
|
+
|
|
6
8
|
Usage::
|
|
7
9
|
|
|
8
10
|
```python
|
|
@@ -20,8 +22,6 @@ Usage::
|
|
|
20
22
|
stream_exists_waiter: StreamExistsWaiter = client.get_waiter("stream_exists")
|
|
21
23
|
stream_not_exists_waiter: StreamNotExistsWaiter = client.get_waiter("stream_not_exists")
|
|
22
24
|
```
|
|
23
|
-
|
|
24
|
-
Copyright 2025 Vlad Emelianov
|
|
25
25
|
"""
|
|
26
26
|
|
|
27
27
|
from __future__ import annotations
|
|
@@ -30,7 +30,7 @@ import sys
|
|
|
30
30
|
|
|
31
31
|
from botocore.waiter import Waiter
|
|
32
32
|
|
|
33
|
-
from .type_defs import DescribeStreamInputWaitTypeDef
|
|
33
|
+
from .type_defs import DescribeStreamInputWaitExtraTypeDef, DescribeStreamInputWaitTypeDef
|
|
34
34
|
|
|
35
35
|
if sys.version_info >= (3, 12):
|
|
36
36
|
from typing import Unpack
|
|
@@ -58,7 +58,7 @@ class StreamNotExistsWaiter(Waiter):
|
|
|
58
58
|
[Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_kinesis/waiters/#streamnotexistswaiter)
|
|
59
59
|
"""
|
|
60
60
|
def wait( # type: ignore[override]
|
|
61
|
-
self, **kwargs: Unpack[
|
|
61
|
+
self, **kwargs: Unpack[DescribeStreamInputWaitExtraTypeDef]
|
|
62
62
|
) -> None:
|
|
63
63
|
"""
|
|
64
64
|
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/kinesis/waiter/StreamNotExists.html#Kinesis.Waiter.StreamNotExists.wait)
|
|
@@ -1,7 +1,7 @@
|
|
|
1
|
-
Metadata-Version: 2.
|
|
1
|
+
Metadata-Version: 2.2
|
|
2
2
|
Name: types-boto3-kinesis
|
|
3
|
-
Version: 1.
|
|
4
|
-
Summary: Type annotations for boto3 Kinesis 1.
|
|
3
|
+
Version: 1.37.0
|
|
4
|
+
Summary: Type annotations for boto3 Kinesis 1.37.0 service generated with mypy-boto3-builder 8.9.2
|
|
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
|
|
@@ -31,6 +31,18 @@ Requires-Python: >=3.8
|
|
|
31
31
|
Description-Content-Type: text/markdown
|
|
32
32
|
License-File: LICENSE
|
|
33
33
|
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
|
+
Dynamic: project-url
|
|
43
|
+
Dynamic: requires-dist
|
|
44
|
+
Dynamic: requires-python
|
|
45
|
+
Dynamic: summary
|
|
34
46
|
|
|
35
47
|
<a id="types-boto3-kinesis"></a>
|
|
36
48
|
|
|
@@ -43,7 +55,7 @@ Requires-Dist: typing-extensions; python_version < "3.12"
|
|
|
43
55
|
|
|
44
56
|

|
|
45
57
|
|
|
46
|
-
Type annotations for [boto3 Kinesis 1.
|
|
58
|
+
Type annotations for [boto3 Kinesis 1.37.0](https://pypi.org/project/boto3/)
|
|
47
59
|
compatible with [VSCode](https://code.visualstudio.com/),
|
|
48
60
|
[PyCharm](https://www.jetbrains.com/pycharm/),
|
|
49
61
|
[Emacs](https://www.gnu.org/software/emacs/),
|
|
@@ -52,7 +64,7 @@ compatible with [VSCode](https://code.visualstudio.com/),
|
|
|
52
64
|
[pyright](https://github.com/microsoft/pyright) and other tools.
|
|
53
65
|
|
|
54
66
|
Generated with
|
|
55
|
-
[mypy-boto3-builder 8.
|
|
67
|
+
[mypy-boto3-builder 8.9.2](https://github.com/youtype/mypy_boto3_builder).
|
|
56
68
|
|
|
57
69
|
More information can be found on
|
|
58
70
|
[types-boto3](https://pypi.org/project/types-boto3/) page and in
|
|
@@ -101,12 +113,12 @@ See how it helps you find and fix potential bugs:
|
|
|
101
113
|
### Generate locally (recommended)
|
|
102
114
|
|
|
103
115
|
You can generate type annotations for `boto3` package locally with
|
|
104
|
-
`
|
|
116
|
+
`mypy-boto3-builder`. Use
|
|
105
117
|
[uv](https://docs.astral.sh/uv/getting-started/installation/) for build
|
|
106
118
|
isolation.
|
|
107
119
|
|
|
108
120
|
1. Run mypy-boto3-builder in your package root directory:
|
|
109
|
-
`uvx --with 'boto3==1.
|
|
121
|
+
`uvx --with 'boto3==1.37.0' mypy-boto3-builder`
|
|
110
122
|
2. Select `boto3` AWS SDK.
|
|
111
123
|
3. Add `Kinesis` service.
|
|
112
124
|
4. Use provided commands to install generated packages.
|
|
@@ -406,11 +418,14 @@ Full list of `Kinesis` TypeDefs can be found in
|
|
|
406
418
|
[docs](https://youtype.github.io/types_boto3_docs/types_boto3_kinesis/type_defs/).
|
|
407
419
|
|
|
408
420
|
```python
|
|
409
|
-
|
|
421
|
+
# TypedDict usage example
|
|
422
|
+
from types_boto3_kinesis.type_defs import AddTagsToStreamInputTypeDef
|
|
410
423
|
|
|
411
424
|
|
|
412
|
-
def get_value() ->
|
|
413
|
-
return {
|
|
425
|
+
def get_value() -> AddTagsToStreamInputTypeDef:
|
|
426
|
+
return {
|
|
427
|
+
"Tags": ...,
|
|
428
|
+
}
|
|
414
429
|
```
|
|
415
430
|
|
|
416
431
|
<a id="how-it-works"></a>
|
|
@@ -464,7 +479,8 @@ Builder changelog can be found in
|
|
|
464
479
|
## Versioning
|
|
465
480
|
|
|
466
481
|
`types-boto3-kinesis` version is the same as related `boto3` version and
|
|
467
|
-
follows
|
|
482
|
+
follows
|
|
483
|
+
[Python Packaging version specifiers](https://packaging.python.org/en/latest/specifications/version-specifiers/).
|
|
468
484
|
|
|
469
485
|
<a id="thank-you"></a>
|
|
470
486
|
|
|
@@ -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=zf_CiP_teJIr5aMvZszv-jxlugr4yiAql9v4o2oJjgc,981
|
|
4
|
+
types_boto3_kinesis/client.py,sha256=yoXV8iWE2dzAkfpge5YLwKjdVQdBp_OsVo90HShNKeQ,25339
|
|
5
|
+
types_boto3_kinesis/client.pyi,sha256=t093bawAtFbxVEwn_opW0bitaW3HNsqyOvaNv3LGfPw,25336
|
|
6
|
+
types_boto3_kinesis/literals.py,sha256=rk9q-Wb-0drATuqkeba3ipuwSYcUiu7CiR9yLlAc1QM,11102
|
|
7
|
+
types_boto3_kinesis/literals.pyi,sha256=Kw6hKCAFqcbZ8jlHpl8Zbhq5OCgi5DVPTfx-lLE_iB4,11100
|
|
8
|
+
types_boto3_kinesis/paginator.py,sha256=tMC0xMFFTj7jnmlqwVbXpDOSYATB8gxMvirWthVDEVc,5986
|
|
9
|
+
types_boto3_kinesis/paginator.pyi,sha256=h8U46TN6_yXBwm8b2leZaWuJbYu8xznqIQMaygMEmAY,5973
|
|
10
|
+
types_boto3_kinesis/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
11
|
+
types_boto3_kinesis/type_defs.py,sha256=Rv1Xvnv5g6jl9H7fUXmTZC0a0r1zxJeiD8j0tesIyaA,18907
|
|
12
|
+
types_boto3_kinesis/type_defs.pyi,sha256=b-sYD8Ru-5n50u3TrOaX3WTpVuGxvkEGUSMFu11AMEs,18819
|
|
13
|
+
types_boto3_kinesis/version.py,sha256=7dplwNyKC_M1NmYn8gNT0u-MAPuLyVgQc5Z98LiK1wM,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.37.0.dist-info/LICENSE,sha256=4jNgB8jJbXtUVJkeygwhUQi--6lAG8DIisfE-h_RiUU,1070
|
|
17
|
+
types_boto3_kinesis-1.37.0.dist-info/METADATA,sha256=Gfo3cKpJviXGyoP1l4vbiHkFrL9U6YOyeQr_SkR6JrE,15954
|
|
18
|
+
types_boto3_kinesis-1.37.0.dist-info/WHEEL,sha256=In9FTNxeP60KnTkGw7wk6mJPYd_dQSjEZmXdBdMCI-8,91
|
|
19
|
+
types_boto3_kinesis-1.37.0.dist-info/top_level.txt,sha256=QOBfHpTRND8MxYawOcHI9oTlGuMPIGXZybD8VDr23WE,20
|
|
20
|
+
types_boto3_kinesis-1.37.0.dist-info/RECORD,,
|
|
@@ -1,20 +0,0 @@
|
|
|
1
|
-
types_boto3_kinesis/__init__.py,sha256=V0Kigm37PI2mssdKDuJbfH1lMXevog8iG54D0Nn0Lqk,1547
|
|
2
|
-
types_boto3_kinesis/__init__.pyi,sha256=3MqbeqhqidLPo-XkyaEOf0wyfGRKI8jXKyAdlel9uDM,1546
|
|
3
|
-
types_boto3_kinesis/__main__.py,sha256=-cdLqwqQcFMuMdvKVZJqSvYeg-qq635-Fq-T_pSQJGI,984
|
|
4
|
-
types_boto3_kinesis/client.py,sha256=BOAt54_1RxVH_jwm2oThWwZOIrkEhnHV4lvOXCzIGsg,25843
|
|
5
|
-
types_boto3_kinesis/client.pyi,sha256=Y0h9zFack4RvCk92wEus_-y1xHuy6Y-eZyR9YWJNSoM,25840
|
|
6
|
-
types_boto3_kinesis/literals.py,sha256=vuJ34-f4Y2gEJabpXk6l2XDUIKydn0qV05rMY5JNf3I,11136
|
|
7
|
-
types_boto3_kinesis/literals.pyi,sha256=z7olr6x9LECmVaX0cIz707ZtUFjluJx_Ecdy8Fs4cjo,11134
|
|
8
|
-
types_boto3_kinesis/paginator.py,sha256=pH3W5T8aX-qUwWsHlIGKVWr2MOtJ4S4TpFBnO3Yj6fw,5986
|
|
9
|
-
types_boto3_kinesis/paginator.pyi,sha256=oo2iJ0x8oqj1DQVeUqNpFughga-D-c3JGKf9hWHONkY,5973
|
|
10
|
-
types_boto3_kinesis/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
11
|
-
types_boto3_kinesis/type_defs.py,sha256=40K4bKyaFCWypCn7TJiEym2Fse_5d_UrHeUDHG-Wc5Y,19068
|
|
12
|
-
types_boto3_kinesis/type_defs.pyi,sha256=re8MzSuGJL5ga-unL0lKEzlrmk9026qxpCS7_BpR66k,18981
|
|
13
|
-
types_boto3_kinesis/version.py,sha256=n6wyMBvI3Tp0INYol4fUJ84y0BqM9ti-SkLRGfsif5s,93
|
|
14
|
-
types_boto3_kinesis/waiter.py,sha256=GDs7QKSKr3V0I_clWeV6ygMv8HuYSD1CLfsIJPiQ2wM,2609
|
|
15
|
-
types_boto3_kinesis/waiter.pyi,sha256=Os5BQ-m_wglxmDJdC6RAbSpSF5P6TFiQUlNHI2cTd6E,2604
|
|
16
|
-
types_boto3_kinesis-1.35.93.dist-info/LICENSE,sha256=4jNgB8jJbXtUVJkeygwhUQi--6lAG8DIisfE-h_RiUU,1070
|
|
17
|
-
types_boto3_kinesis-1.35.93.dist-info/METADATA,sha256=NOQdw72u7bnUpg5UTC7DYZY7U4RlXvA9A_cMYJG3y9g,15617
|
|
18
|
-
types_boto3_kinesis-1.35.93.dist-info/WHEEL,sha256=A3WOREP4zgxI0fKrHUG8DC8013e3dK3n7a6HDbcEIwE,91
|
|
19
|
-
types_boto3_kinesis-1.35.93.dist-info/top_level.txt,sha256=QOBfHpTRND8MxYawOcHI9oTlGuMPIGXZybD8VDr23WE,20
|
|
20
|
-
types_boto3_kinesis-1.35.93.dist-info/RECORD,,
|
|
File without changes
|
{types_boto3_kinesis-1.35.93.dist-info → types_boto3_kinesis-1.37.0.dist-info}/top_level.txt
RENAMED
|
File without changes
|