types-boto3-kinesis 1.40.64__py3-none-any.whl → 1.40.65__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.
@@ -12,8 +12,8 @@ def print_info() -> None:
12
12
  Print package info to stdout.
13
13
  """
14
14
  sys.stdout.write(
15
- "Type annotations for boto3 Kinesis 1.40.64\n"
16
- "Version: 1.40.64\n"
15
+ "Type annotations for boto3 Kinesis 1.40.65\n"
16
+ "Version: 1.40.65\n"
17
17
  "Builder version: 8.11.0\n"
18
18
  "Docs: https://youtype.github.io/types_boto3_docs/types_boto3_kinesis//\n"
19
19
  "Boto3 docs: https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/kinesis.html#kinesis\n"
@@ -26,7 +26,7 @@ def print_version() -> None:
26
26
  """
27
27
  Print package version to stdout.
28
28
  """
29
- sys.stdout.write("1.40.64\n")
29
+ sys.stdout.write("1.40.65\n")
30
30
 
31
31
 
32
32
  def main() -> None:
@@ -38,6 +38,7 @@ from .type_defs import (
38
38
  DeleteResourcePolicyInputTypeDef,
39
39
  DeleteStreamInputTypeDef,
40
40
  DeregisterStreamConsumerInputTypeDef,
41
+ DescribeAccountSettingsOutputTypeDef,
41
42
  DescribeLimitsOutputTypeDef,
42
43
  DescribeStreamConsumerInputTypeDef,
43
44
  DescribeStreamConsumerOutputTypeDef,
@@ -82,10 +83,14 @@ from .type_defs import (
82
83
  SubscribeToShardOutputTypeDef,
83
84
  TagResourceInputTypeDef,
84
85
  UntagResourceInputTypeDef,
86
+ UpdateAccountSettingsInputTypeDef,
87
+ UpdateAccountSettingsOutputTypeDef,
85
88
  UpdateMaxRecordSizeInputTypeDef,
86
89
  UpdateShardCountInputTypeDef,
87
90
  UpdateShardCountOutputTypeDef,
88
91
  UpdateStreamModeInputTypeDef,
92
+ UpdateStreamWarmThroughputInputTypeDef,
93
+ UpdateStreamWarmThroughputOutputTypeDef,
89
94
  )
90
95
  from .waiter import StreamExistsWaiter, StreamNotExistsWaiter
91
96
 
@@ -219,6 +224,14 @@ class KinesisClient(BaseClient):
219
224
  [Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_kinesis/client/#deregister_stream_consumer)
220
225
  """
221
226
 
227
+ def describe_account_settings(self) -> DescribeAccountSettingsOutputTypeDef:
228
+ """
229
+ Describes the account-level settings for Amazon Kinesis Data Streams.
230
+
231
+ [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/kinesis/client/describe_account_settings.html)
232
+ [Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_kinesis/client/#describe_account_settings)
233
+ """
234
+
222
235
  def describe_limits(self) -> DescribeLimitsOutputTypeDef:
223
236
  """
224
237
  Describes the shard limits and usage for the account.
@@ -485,6 +498,16 @@ class KinesisClient(BaseClient):
485
498
  [Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_kinesis/client/#untag_resource)
486
499
  """
487
500
 
501
+ def update_account_settings(
502
+ self, **kwargs: Unpack[UpdateAccountSettingsInputTypeDef]
503
+ ) -> UpdateAccountSettingsOutputTypeDef:
504
+ """
505
+ Updates the account-level settings for Amazon Kinesis Data Streams.
506
+
507
+ [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/kinesis/client/update_account_settings.html)
508
+ [Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_kinesis/client/#update_account_settings)
509
+ """
510
+
488
511
  def update_max_record_size(
489
512
  self, **kwargs: Unpack[UpdateMaxRecordSizeInputTypeDef]
490
513
  ) -> EmptyResponseMetadataTypeDef:
@@ -517,6 +540,17 @@ class KinesisClient(BaseClient):
517
540
  [Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_kinesis/client/#update_stream_mode)
518
541
  """
519
542
 
543
+ def update_stream_warm_throughput(
544
+ self, **kwargs: Unpack[UpdateStreamWarmThroughputInputTypeDef]
545
+ ) -> UpdateStreamWarmThroughputOutputTypeDef:
546
+ """
547
+ Updates the warm throughput configuration for the specified Amazon Kinesis Data
548
+ Streams on-demand data stream.
549
+
550
+ [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/kinesis/client/update_stream_warm_throughput.html)
551
+ [Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_kinesis/client/#update_stream_warm_throughput)
552
+ """
553
+
520
554
  @overload # type: ignore[override]
521
555
  def get_paginator( # type: ignore[override]
522
556
  self, operation_name: Literal["describe_stream"]
@@ -38,6 +38,7 @@ from .type_defs import (
38
38
  DeleteResourcePolicyInputTypeDef,
39
39
  DeleteStreamInputTypeDef,
40
40
  DeregisterStreamConsumerInputTypeDef,
41
+ DescribeAccountSettingsOutputTypeDef,
41
42
  DescribeLimitsOutputTypeDef,
42
43
  DescribeStreamConsumerInputTypeDef,
43
44
  DescribeStreamConsumerOutputTypeDef,
@@ -82,10 +83,14 @@ from .type_defs import (
82
83
  SubscribeToShardOutputTypeDef,
83
84
  TagResourceInputTypeDef,
84
85
  UntagResourceInputTypeDef,
86
+ UpdateAccountSettingsInputTypeDef,
87
+ UpdateAccountSettingsOutputTypeDef,
85
88
  UpdateMaxRecordSizeInputTypeDef,
86
89
  UpdateShardCountInputTypeDef,
87
90
  UpdateShardCountOutputTypeDef,
88
91
  UpdateStreamModeInputTypeDef,
92
+ UpdateStreamWarmThroughputInputTypeDef,
93
+ UpdateStreamWarmThroughputOutputTypeDef,
89
94
  )
90
95
  from .waiter import StreamExistsWaiter, StreamNotExistsWaiter
91
96
 
@@ -216,6 +221,14 @@ class KinesisClient(BaseClient):
216
221
  [Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_kinesis/client/#deregister_stream_consumer)
217
222
  """
218
223
 
224
+ def describe_account_settings(self) -> DescribeAccountSettingsOutputTypeDef:
225
+ """
226
+ Describes the account-level settings for Amazon Kinesis Data Streams.
227
+
228
+ [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/kinesis/client/describe_account_settings.html)
229
+ [Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_kinesis/client/#describe_account_settings)
230
+ """
231
+
219
232
  def describe_limits(self) -> DescribeLimitsOutputTypeDef:
220
233
  """
221
234
  Describes the shard limits and usage for the account.
@@ -482,6 +495,16 @@ class KinesisClient(BaseClient):
482
495
  [Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_kinesis/client/#untag_resource)
483
496
  """
484
497
 
498
+ def update_account_settings(
499
+ self, **kwargs: Unpack[UpdateAccountSettingsInputTypeDef]
500
+ ) -> UpdateAccountSettingsOutputTypeDef:
501
+ """
502
+ Updates the account-level settings for Amazon Kinesis Data Streams.
503
+
504
+ [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/kinesis/client/update_account_settings.html)
505
+ [Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_kinesis/client/#update_account_settings)
506
+ """
507
+
485
508
  def update_max_record_size(
486
509
  self, **kwargs: Unpack[UpdateMaxRecordSizeInputTypeDef]
487
510
  ) -> EmptyResponseMetadataTypeDef:
@@ -514,6 +537,17 @@ class KinesisClient(BaseClient):
514
537
  [Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_kinesis/client/#update_stream_mode)
515
538
  """
516
539
 
540
+ def update_stream_warm_throughput(
541
+ self, **kwargs: Unpack[UpdateStreamWarmThroughputInputTypeDef]
542
+ ) -> UpdateStreamWarmThroughputOutputTypeDef:
543
+ """
544
+ Updates the warm throughput configuration for the specified Amazon Kinesis Data
545
+ Streams on-demand data stream.
546
+
547
+ [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/kinesis/client/update_stream_warm_throughput.html)
548
+ [Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_kinesis/client/#update_stream_warm_throughput)
549
+ """
550
+
517
551
  @overload # type: ignore[override]
518
552
  def get_paginator( # type: ignore[override]
519
553
  self, operation_name: Literal["describe_stream"]
@@ -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",
@@ -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",
@@ -27,6 +27,8 @@ from .literals import (
27
27
  ConsumerStatusType,
28
28
  EncryptionTypeType,
29
29
  MetricsNameType,
30
+ MinimumThroughputBillingCommitmentInputStatusType,
31
+ MinimumThroughputBillingCommitmentOutputStatusType,
30
32
  ShardFilterTypeType,
31
33
  ShardIteratorTypeType,
32
34
  StreamModeType,
@@ -56,6 +58,7 @@ __all__ = (
56
58
  "DeleteResourcePolicyInputTypeDef",
57
59
  "DeleteStreamInputTypeDef",
58
60
  "DeregisterStreamConsumerInputTypeDef",
61
+ "DescribeAccountSettingsOutputTypeDef",
59
62
  "DescribeLimitsOutputTypeDef",
60
63
  "DescribeStreamConsumerInputTypeDef",
61
64
  "DescribeStreamConsumerOutputTypeDef",
@@ -100,6 +103,8 @@ __all__ = (
100
103
  "ListTagsForStreamInputTypeDef",
101
104
  "ListTagsForStreamOutputTypeDef",
102
105
  "MergeShardsInputTypeDef",
106
+ "MinimumThroughputBillingCommitmentInputTypeDef",
107
+ "MinimumThroughputBillingCommitmentOutputTypeDef",
103
108
  "PaginatorConfigTypeDef",
104
109
  "PutRecordInputTypeDef",
105
110
  "PutRecordOutputTypeDef",
@@ -134,11 +139,16 @@ __all__ = (
134
139
  "TagTypeDef",
135
140
  "TimestampTypeDef",
136
141
  "UntagResourceInputTypeDef",
142
+ "UpdateAccountSettingsInputTypeDef",
143
+ "UpdateAccountSettingsOutputTypeDef",
137
144
  "UpdateMaxRecordSizeInputTypeDef",
138
145
  "UpdateShardCountInputTypeDef",
139
146
  "UpdateShardCountOutputTypeDef",
140
147
  "UpdateStreamModeInputTypeDef",
148
+ "UpdateStreamWarmThroughputInputTypeDef",
149
+ "UpdateStreamWarmThroughputOutputTypeDef",
141
150
  "WaiterConfigTypeDef",
151
+ "WarmThroughputObjectTypeDef",
142
152
  )
143
153
 
144
154
 
@@ -197,6 +207,13 @@ class DeregisterStreamConsumerInputTypeDef(TypedDict):
197
207
  ConsumerARN: NotRequired[str]
198
208
 
199
209
 
210
+ class MinimumThroughputBillingCommitmentOutputTypeDef(TypedDict):
211
+ Status: MinimumThroughputBillingCommitmentOutputStatusType
212
+ StartedAt: NotRequired[datetime]
213
+ EndedAt: NotRequired[datetime]
214
+ EarliestAllowedEndAt: NotRequired[datetime]
215
+
216
+
200
217
  class ResponseMetadataTypeDef(TypedDict):
201
218
  RequestId: str
202
219
  HTTPStatusCode: int
@@ -334,6 +351,10 @@ class MergeShardsInputTypeDef(TypedDict):
334
351
  StreamARN: NotRequired[str]
335
352
 
336
353
 
354
+ class MinimumThroughputBillingCommitmentInputTypeDef(TypedDict):
355
+ Status: MinimumThroughputBillingCommitmentInputStatusType
356
+
357
+
337
358
  class PutRecordsResultEntryTypeDef(TypedDict):
338
359
  SequenceNumber: NotRequired[str]
339
360
  ShardId: NotRequired[str]
@@ -392,6 +413,11 @@ class StopStreamEncryptionInputTypeDef(TypedDict):
392
413
  StreamARN: NotRequired[str]
393
414
 
394
415
 
416
+ class WarmThroughputObjectTypeDef(TypedDict):
417
+ TargetMiBps: NotRequired[int]
418
+ CurrentMiBps: NotRequired[int]
419
+
420
+
395
421
  class TagResourceInputTypeDef(TypedDict):
396
422
  Tags: Mapping[str, str]
397
423
  ResourceARN: str
@@ -414,6 +440,12 @@ class UpdateShardCountInputTypeDef(TypedDict):
414
440
  StreamARN: NotRequired[str]
415
441
 
416
442
 
443
+ class UpdateStreamWarmThroughputInputTypeDef(TypedDict):
444
+ WarmThroughputMiBps: int
445
+ StreamARN: NotRequired[str]
446
+ StreamName: NotRequired[str]
447
+
448
+
417
449
  class PutRecordInputTypeDef(TypedDict):
418
450
  Data: BlobTypeDef
419
451
  PartitionKey: str
@@ -440,6 +472,7 @@ class CreateStreamInputTypeDef(TypedDict):
440
472
  ShardCount: NotRequired[int]
441
473
  StreamModeDetails: NotRequired[StreamModeDetailsTypeDef]
442
474
  Tags: NotRequired[Mapping[str, str]]
475
+ WarmThroughputMiBps: NotRequired[int]
443
476
  MaxRecordSizeInKiB: NotRequired[int]
444
477
 
445
478
 
@@ -454,6 +487,12 @@ class StreamSummaryTypeDef(TypedDict):
454
487
  class UpdateStreamModeInputTypeDef(TypedDict):
455
488
  StreamARN: str
456
489
  StreamModeDetails: StreamModeDetailsTypeDef
490
+ WarmThroughputMiBps: NotRequired[int]
491
+
492
+
493
+ class DescribeAccountSettingsOutputTypeDef(TypedDict):
494
+ MinimumThroughputBillingCommitment: MinimumThroughputBillingCommitmentOutputTypeDef
495
+ ResponseMetadata: ResponseMetadataTypeDef
457
496
 
458
497
 
459
498
  class DescribeLimitsOutputTypeDef(TypedDict):
@@ -509,6 +548,11 @@ class RegisterStreamConsumerOutputTypeDef(TypedDict):
509
548
  ResponseMetadata: ResponseMetadataTypeDef
510
549
 
511
550
 
551
+ class UpdateAccountSettingsOutputTypeDef(TypedDict):
552
+ MinimumThroughputBillingCommitment: MinimumThroughputBillingCommitmentOutputTypeDef
553
+ ResponseMetadata: ResponseMetadataTypeDef
554
+
555
+
512
556
  class UpdateShardCountOutputTypeDef(TypedDict):
513
557
  StreamName: str
514
558
  CurrentShardCount: int
@@ -544,21 +588,6 @@ class DescribeStreamInputWaitTypeDef(TypedDict):
544
588
  WaiterConfig: NotRequired[WaiterConfigTypeDef]
545
589
 
546
590
 
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
591
  class GetShardIteratorInputTypeDef(TypedDict):
563
592
  ShardId: str
564
593
  ShardIteratorType: ShardIteratorTypeType
@@ -610,6 +639,10 @@ class ListTagsForStreamOutputTypeDef(TypedDict):
610
639
  ResponseMetadata: ResponseMetadataTypeDef
611
640
 
612
641
 
642
+ class UpdateAccountSettingsInputTypeDef(TypedDict):
643
+ MinimumThroughputBillingCommitment: MinimumThroughputBillingCommitmentInputTypeDef
644
+
645
+
613
646
  class PutRecordsOutputTypeDef(TypedDict):
614
647
  FailedRecordCount: int
615
648
  Records: List[PutRecordsResultEntryTypeDef]
@@ -625,6 +658,29 @@ class ShardTypeDef(TypedDict):
625
658
  AdjacentParentShardId: NotRequired[str]
626
659
 
627
660
 
661
+ class StreamDescriptionSummaryTypeDef(TypedDict):
662
+ StreamName: str
663
+ StreamARN: str
664
+ StreamStatus: StreamStatusType
665
+ RetentionPeriodHours: int
666
+ StreamCreationTimestamp: datetime
667
+ EnhancedMonitoring: List[EnhancedMetricsTypeDef]
668
+ OpenShardCount: int
669
+ StreamModeDetails: NotRequired[StreamModeDetailsTypeDef]
670
+ EncryptionType: NotRequired[EncryptionTypeType]
671
+ KeyId: NotRequired[str]
672
+ ConsumerCount: NotRequired[int]
673
+ WarmThroughput: NotRequired[WarmThroughputObjectTypeDef]
674
+ MaxRecordSizeInKiB: NotRequired[int]
675
+
676
+
677
+ class UpdateStreamWarmThroughputOutputTypeDef(TypedDict):
678
+ StreamARN: str
679
+ StreamName: str
680
+ WarmThroughput: WarmThroughputObjectTypeDef
681
+ ResponseMetadata: ResponseMetadataTypeDef
682
+
683
+
628
684
  class PutRecordsInputTypeDef(TypedDict):
629
685
  Records: Sequence[PutRecordsRequestEntryTypeDef]
630
686
  StreamName: NotRequired[str]
@@ -654,11 +710,6 @@ class ListStreamsOutputTypeDef(TypedDict):
654
710
  NextToken: NotRequired[str]
655
711
 
656
712
 
657
- class DescribeStreamSummaryOutputTypeDef(TypedDict):
658
- StreamDescriptionSummary: StreamDescriptionSummaryTypeDef
659
- ResponseMetadata: ResponseMetadataTypeDef
660
-
661
-
662
713
  class ListShardsInputPaginateTypeDef(TypedDict):
663
714
  StreamName: NotRequired[str]
664
715
  ExclusiveStartShardId: NotRequired[str]
@@ -704,6 +755,11 @@ class StreamDescriptionTypeDef(TypedDict):
704
755
  KeyId: NotRequired[str]
705
756
 
706
757
 
758
+ class DescribeStreamSummaryOutputTypeDef(TypedDict):
759
+ StreamDescriptionSummary: StreamDescriptionSummaryTypeDef
760
+ ResponseMetadata: ResponseMetadataTypeDef
761
+
762
+
707
763
  class SubscribeToShardEventStreamTypeDef(TypedDict):
708
764
  SubscribeToShardEvent: SubscribeToShardEventTypeDef
709
765
  ResourceNotFoundException: NotRequired[ResourceNotFoundExceptionTypeDef]
@@ -27,6 +27,8 @@ from .literals import (
27
27
  ConsumerStatusType,
28
28
  EncryptionTypeType,
29
29
  MetricsNameType,
30
+ MinimumThroughputBillingCommitmentInputStatusType,
31
+ MinimumThroughputBillingCommitmentOutputStatusType,
30
32
  ShardFilterTypeType,
31
33
  ShardIteratorTypeType,
32
34
  StreamModeType,
@@ -55,6 +57,7 @@ __all__ = (
55
57
  "DeleteResourcePolicyInputTypeDef",
56
58
  "DeleteStreamInputTypeDef",
57
59
  "DeregisterStreamConsumerInputTypeDef",
60
+ "DescribeAccountSettingsOutputTypeDef",
58
61
  "DescribeLimitsOutputTypeDef",
59
62
  "DescribeStreamConsumerInputTypeDef",
60
63
  "DescribeStreamConsumerOutputTypeDef",
@@ -99,6 +102,8 @@ __all__ = (
99
102
  "ListTagsForStreamInputTypeDef",
100
103
  "ListTagsForStreamOutputTypeDef",
101
104
  "MergeShardsInputTypeDef",
105
+ "MinimumThroughputBillingCommitmentInputTypeDef",
106
+ "MinimumThroughputBillingCommitmentOutputTypeDef",
102
107
  "PaginatorConfigTypeDef",
103
108
  "PutRecordInputTypeDef",
104
109
  "PutRecordOutputTypeDef",
@@ -133,11 +138,16 @@ __all__ = (
133
138
  "TagTypeDef",
134
139
  "TimestampTypeDef",
135
140
  "UntagResourceInputTypeDef",
141
+ "UpdateAccountSettingsInputTypeDef",
142
+ "UpdateAccountSettingsOutputTypeDef",
136
143
  "UpdateMaxRecordSizeInputTypeDef",
137
144
  "UpdateShardCountInputTypeDef",
138
145
  "UpdateShardCountOutputTypeDef",
139
146
  "UpdateStreamModeInputTypeDef",
147
+ "UpdateStreamWarmThroughputInputTypeDef",
148
+ "UpdateStreamWarmThroughputOutputTypeDef",
140
149
  "WaiterConfigTypeDef",
150
+ "WarmThroughputObjectTypeDef",
141
151
  )
142
152
 
143
153
  class AddTagsToStreamInputTypeDef(TypedDict):
@@ -185,6 +195,12 @@ class DeregisterStreamConsumerInputTypeDef(TypedDict):
185
195
  ConsumerName: NotRequired[str]
186
196
  ConsumerARN: NotRequired[str]
187
197
 
198
+ class MinimumThroughputBillingCommitmentOutputTypeDef(TypedDict):
199
+ Status: MinimumThroughputBillingCommitmentOutputStatusType
200
+ StartedAt: NotRequired[datetime]
201
+ EndedAt: NotRequired[datetime]
202
+ EarliestAllowedEndAt: NotRequired[datetime]
203
+
188
204
  class ResponseMetadataTypeDef(TypedDict):
189
205
  RequestId: str
190
206
  HTTPStatusCode: int
@@ -296,6 +312,9 @@ class MergeShardsInputTypeDef(TypedDict):
296
312
  StreamName: NotRequired[str]
297
313
  StreamARN: NotRequired[str]
298
314
 
315
+ class MinimumThroughputBillingCommitmentInputTypeDef(TypedDict):
316
+ Status: MinimumThroughputBillingCommitmentInputStatusType
317
+
299
318
  class PutRecordsResultEntryTypeDef(TypedDict):
300
319
  SequenceNumber: NotRequired[str]
301
320
  ShardId: NotRequired[str]
@@ -344,6 +363,10 @@ class StopStreamEncryptionInputTypeDef(TypedDict):
344
363
  StreamName: NotRequired[str]
345
364
  StreamARN: NotRequired[str]
346
365
 
366
+ class WarmThroughputObjectTypeDef(TypedDict):
367
+ TargetMiBps: NotRequired[int]
368
+ CurrentMiBps: NotRequired[int]
369
+
347
370
  class TagResourceInputTypeDef(TypedDict):
348
371
  Tags: Mapping[str, str]
349
372
  ResourceARN: str
@@ -362,6 +385,11 @@ class UpdateShardCountInputTypeDef(TypedDict):
362
385
  StreamName: NotRequired[str]
363
386
  StreamARN: NotRequired[str]
364
387
 
388
+ class UpdateStreamWarmThroughputInputTypeDef(TypedDict):
389
+ WarmThroughputMiBps: int
390
+ StreamARN: NotRequired[str]
391
+ StreamName: NotRequired[str]
392
+
365
393
  class PutRecordInputTypeDef(TypedDict):
366
394
  Data: BlobTypeDef
367
395
  PartitionKey: str
@@ -385,6 +413,7 @@ class CreateStreamInputTypeDef(TypedDict):
385
413
  ShardCount: NotRequired[int]
386
414
  StreamModeDetails: NotRequired[StreamModeDetailsTypeDef]
387
415
  Tags: NotRequired[Mapping[str, str]]
416
+ WarmThroughputMiBps: NotRequired[int]
388
417
  MaxRecordSizeInKiB: NotRequired[int]
389
418
 
390
419
  class StreamSummaryTypeDef(TypedDict):
@@ -397,6 +426,11 @@ class StreamSummaryTypeDef(TypedDict):
397
426
  class UpdateStreamModeInputTypeDef(TypedDict):
398
427
  StreamARN: str
399
428
  StreamModeDetails: StreamModeDetailsTypeDef
429
+ WarmThroughputMiBps: NotRequired[int]
430
+
431
+ class DescribeAccountSettingsOutputTypeDef(TypedDict):
432
+ MinimumThroughputBillingCommitment: MinimumThroughputBillingCommitmentOutputTypeDef
433
+ ResponseMetadata: ResponseMetadataTypeDef
400
434
 
401
435
  class DescribeLimitsOutputTypeDef(TypedDict):
402
436
  ShardLimit: int
@@ -442,6 +476,10 @@ class RegisterStreamConsumerOutputTypeDef(TypedDict):
442
476
  Consumer: ConsumerTypeDef
443
477
  ResponseMetadata: ResponseMetadataTypeDef
444
478
 
479
+ class UpdateAccountSettingsOutputTypeDef(TypedDict):
480
+ MinimumThroughputBillingCommitment: MinimumThroughputBillingCommitmentOutputTypeDef
481
+ ResponseMetadata: ResponseMetadataTypeDef
482
+
445
483
  class UpdateShardCountOutputTypeDef(TypedDict):
446
484
  StreamName: str
447
485
  CurrentShardCount: int
@@ -472,20 +510,6 @@ class DescribeStreamInputWaitTypeDef(TypedDict):
472
510
  StreamARN: NotRequired[str]
473
511
  WaiterConfig: NotRequired[WaiterConfigTypeDef]
474
512
 
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
513
  class GetShardIteratorInputTypeDef(TypedDict):
490
514
  ShardId: str
491
515
  ShardIteratorType: ShardIteratorTypeType
@@ -531,6 +555,9 @@ class ListTagsForStreamOutputTypeDef(TypedDict):
531
555
  HasMoreTags: bool
532
556
  ResponseMetadata: ResponseMetadataTypeDef
533
557
 
558
+ class UpdateAccountSettingsInputTypeDef(TypedDict):
559
+ MinimumThroughputBillingCommitment: MinimumThroughputBillingCommitmentInputTypeDef
560
+
534
561
  class PutRecordsOutputTypeDef(TypedDict):
535
562
  FailedRecordCount: int
536
563
  Records: List[PutRecordsResultEntryTypeDef]
@@ -544,6 +571,27 @@ class ShardTypeDef(TypedDict):
544
571
  ParentShardId: NotRequired[str]
545
572
  AdjacentParentShardId: NotRequired[str]
546
573
 
574
+ class StreamDescriptionSummaryTypeDef(TypedDict):
575
+ StreamName: str
576
+ StreamARN: str
577
+ StreamStatus: StreamStatusType
578
+ RetentionPeriodHours: int
579
+ StreamCreationTimestamp: datetime
580
+ EnhancedMonitoring: List[EnhancedMetricsTypeDef]
581
+ OpenShardCount: int
582
+ StreamModeDetails: NotRequired[StreamModeDetailsTypeDef]
583
+ EncryptionType: NotRequired[EncryptionTypeType]
584
+ KeyId: NotRequired[str]
585
+ ConsumerCount: NotRequired[int]
586
+ WarmThroughput: NotRequired[WarmThroughputObjectTypeDef]
587
+ MaxRecordSizeInKiB: NotRequired[int]
588
+
589
+ class UpdateStreamWarmThroughputOutputTypeDef(TypedDict):
590
+ StreamARN: str
591
+ StreamName: str
592
+ WarmThroughput: WarmThroughputObjectTypeDef
593
+ ResponseMetadata: ResponseMetadataTypeDef
594
+
547
595
  class PutRecordsInputTypeDef(TypedDict):
548
596
  Records: Sequence[PutRecordsRequestEntryTypeDef]
549
597
  StreamName: NotRequired[str]
@@ -569,10 +617,6 @@ class ListStreamsOutputTypeDef(TypedDict):
569
617
  ResponseMetadata: ResponseMetadataTypeDef
570
618
  NextToken: NotRequired[str]
571
619
 
572
- class DescribeStreamSummaryOutputTypeDef(TypedDict):
573
- StreamDescriptionSummary: StreamDescriptionSummaryTypeDef
574
- ResponseMetadata: ResponseMetadataTypeDef
575
-
576
620
  class ListShardsInputPaginateTypeDef(TypedDict):
577
621
  StreamName: NotRequired[str]
578
622
  ExclusiveStartShardId: NotRequired[str]
@@ -613,6 +657,10 @@ class StreamDescriptionTypeDef(TypedDict):
613
657
  EncryptionType: NotRequired[EncryptionTypeType]
614
658
  KeyId: NotRequired[str]
615
659
 
660
+ class DescribeStreamSummaryOutputTypeDef(TypedDict):
661
+ StreamDescriptionSummary: StreamDescriptionSummaryTypeDef
662
+ ResponseMetadata: ResponseMetadataTypeDef
663
+
616
664
  class SubscribeToShardEventStreamTypeDef(TypedDict):
617
665
  SubscribeToShardEvent: SubscribeToShardEventTypeDef
618
666
  ResourceNotFoundException: NotRequired[ResourceNotFoundExceptionTypeDef]
@@ -4,4 +4,4 @@ Source of truth for version.
4
4
  Copyright 2025 Vlad Emelianov
5
5
  """
6
6
 
7
- __version__ = "1.40.64"
7
+ __version__ = "1.40.65"
@@ -1,7 +1,7 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: types-boto3-kinesis
3
- Version: 1.40.64
4
- Summary: Type annotations for boto3 Kinesis 1.40.64 service generated with mypy-boto3-builder 8.11.0
3
+ Version: 1.40.65
4
+ Summary: Type annotations for boto3 Kinesis 1.40.65 service generated with mypy-boto3-builder 8.11.0
5
5
  Home-page: https://github.com/youtype/mypy_boto3_builder
6
6
  Author: Vlad Emelianov
7
7
  Author-email: vlad.emelianov.nz@gmail.com
@@ -56,7 +56,7 @@ Dynamic: summary
56
56
 
57
57
  ![boto3.typed](https://github.com/youtype/mypy_boto3_builder/raw/main/logo.png)
58
58
 
59
- Type annotations for [boto3 Kinesis 1.40.64](https://pypi.org/project/boto3/)
59
+ Type annotations for [boto3 Kinesis 1.40.65](https://pypi.org/project/boto3/)
60
60
  compatible with [VSCode](https://code.visualstudio.com/),
61
61
  [PyCharm](https://www.jetbrains.com/pycharm/),
62
62
  [Emacs](https://www.gnu.org/software/emacs/),
@@ -119,7 +119,7 @@ You can generate type annotations for `boto3` package locally with
119
119
  isolation.
120
120
 
121
121
  1. Run mypy-boto3-builder in your package root directory:
122
- `uvx --with 'boto3==1.40.64' mypy-boto3-builder`
122
+ `uvx --with 'boto3==1.40.65' mypy-boto3-builder`
123
123
  2. Select `boto3` AWS SDK.
124
124
  3. Add `Kinesis` service.
125
125
  4. Use provided commands to install generated packages.
@@ -0,0 +1,20 @@
1
+ types_boto3_kinesis/__init__.py,sha256=dZibOr76dfPr5wCNANDykI0UyW9xMfDc7FIy9zGg6Yk,1629
2
+ types_boto3_kinesis/__init__.pyi,sha256=pw7BwtQjYyrjE-yxnkidlbq5kqFJ40aHk8Hqc3gAdjc,1628
3
+ types_boto3_kinesis/__main__.py,sha256=tj5vqAnoqyoOGKI7tzqrcSKpIcIhWKtHKvOKgg7eNsk,985
4
+ types_boto3_kinesis/client.py,sha256=z_u4jRo0irgEz68wd4mmvZHmAN6yUwgPvcqsDcgJv5M,29422
5
+ types_boto3_kinesis/client.pyi,sha256=fYpv0VCZOvKW5Ujuvv7suj1NpCkqWQkCYDr3bwB0bLg,29419
6
+ types_boto3_kinesis/literals.py,sha256=CObE6x1P_671FqwPzT4Tegb2WXDmNgQ2NccQXdfONWM,11552
7
+ types_boto3_kinesis/literals.pyi,sha256=shl139FVcFffsq6ug18OZi2Dszsg8YKK1ne8WnYny9Y,11550
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=chxoTiEMhP6rAnWPTKNXhFVHRi0HCi-3KCQBa-_0W_0,21694
12
+ types_boto3_kinesis/type_defs.pyi,sha256=0w_H_VBZkxlGvSmZoWlEXEQI8lfLkTSOC_8dsMpI4iM,21593
13
+ types_boto3_kinesis/version.py,sha256=kBh3z3jS7ZuVbWLjrlfYQdIrRaS-qfuf7pzM1j2TeS4,93
14
+ types_boto3_kinesis/waiter.py,sha256=G_i6sGWuCOCa-Zctf6dxfBAZSVzIHppZFXO4Op5MI-U,2651
15
+ types_boto3_kinesis/waiter.pyi,sha256=htjYy9RXj6f6iSX8l0Pb6gIW_xsiFy9QPHRC9DzueHQ,2646
16
+ types_boto3_kinesis-1.40.65.dist-info/licenses/LICENSE,sha256=4jNgB8jJbXtUVJkeygwhUQi--6lAG8DIisfE-h_RiUU,1070
17
+ types_boto3_kinesis-1.40.65.dist-info/METADATA,sha256=faumdyJ2XM8Qbxek85qMS36E5Uc5UBz_ULAyVi4A_FQ,15982
18
+ types_boto3_kinesis-1.40.65.dist-info/WHEEL,sha256=_zCd3N1l69ArxyTb8rzEoP9TpbYXkqRFSNOD5OuxnTs,91
19
+ types_boto3_kinesis-1.40.65.dist-info/top_level.txt,sha256=QOBfHpTRND8MxYawOcHI9oTlGuMPIGXZybD8VDr23WE,20
20
+ types_boto3_kinesis-1.40.65.dist-info/RECORD,,
@@ -1,20 +0,0 @@
1
- types_boto3_kinesis/__init__.py,sha256=dZibOr76dfPr5wCNANDykI0UyW9xMfDc7FIy9zGg6Yk,1629
2
- types_boto3_kinesis/__init__.pyi,sha256=pw7BwtQjYyrjE-yxnkidlbq5kqFJ40aHk8Hqc3gAdjc,1628
3
- types_boto3_kinesis/__main__.py,sha256=MTSLbUgLM2k6CD3Von5v43-cZz-b_bVjwsluNnjDuhc,985
4
- types_boto3_kinesis/client.py,sha256=n0XGCwHN2mpg9dCVXvAeietSAT6Qhx3mq2ZW1KqD3_w,27576
5
- types_boto3_kinesis/client.pyi,sha256=wtMontQ3Bjbc8wGYR88LmToAI1N0FqceI2piqB9fseQ,27573
6
- types_boto3_kinesis/literals.py,sha256=f2KEjixzW6LEbs9RIN_p0oVz-VCP7T9ZNnkE0aD1zQI,11226
7
- types_boto3_kinesis/literals.pyi,sha256=9QCPGCG7icXI5jxQxhggDg9wRXJrzpnA9WSNP6eyb7U,11224
8
- types_boto3_kinesis/paginator.py,sha256=tMC0xMFFTj7jnmlqwVbXpDOSYATB8gxMvirWthVDEVc,5986
9
- types_boto3_kinesis/paginator.pyi,sha256=h8U46TN6_yXBwm8b2leZaWuJbYu8xznqIQMaygMEmAY,5973
10
- types_boto3_kinesis/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
11
- types_boto3_kinesis/type_defs.py,sha256=BeoYLBq6xneNURfyxxvTz6E0_BR6uizmGLcME_8bCEw,19710
12
- types_boto3_kinesis/type_defs.pyi,sha256=r-Pa2fk8Jqwf7nrhmEfQ7xiel38IyYJ2yqVai78_6Qo,19617
13
- types_boto3_kinesis/version.py,sha256=OHPC7HoA44uIF6yFy8xLZmr64QoXQIVmZo5EBcZ4Cv8,93
14
- types_boto3_kinesis/waiter.py,sha256=G_i6sGWuCOCa-Zctf6dxfBAZSVzIHppZFXO4Op5MI-U,2651
15
- types_boto3_kinesis/waiter.pyi,sha256=htjYy9RXj6f6iSX8l0Pb6gIW_xsiFy9QPHRC9DzueHQ,2646
16
- types_boto3_kinesis-1.40.64.dist-info/licenses/LICENSE,sha256=4jNgB8jJbXtUVJkeygwhUQi--6lAG8DIisfE-h_RiUU,1070
17
- types_boto3_kinesis-1.40.64.dist-info/METADATA,sha256=KbhWa9iz4vebDYGwlminRnHUVWKlsj69iDyToRNLJfA,15982
18
- types_boto3_kinesis-1.40.64.dist-info/WHEEL,sha256=_zCd3N1l69ArxyTb8rzEoP9TpbYXkqRFSNOD5OuxnTs,91
19
- types_boto3_kinesis-1.40.64.dist-info/top_level.txt,sha256=QOBfHpTRND8MxYawOcHI9oTlGuMPIGXZybD8VDr23WE,20
20
- types_boto3_kinesis-1.40.64.dist-info/RECORD,,