mypy-boto3-timestream-write 1.27.0__py3-none-any.whl → 1.28.12__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.

Potentially problematic release.


This version of mypy-boto3-timestream-write might be problematic. Click here for more details.

@@ -38,13 +38,17 @@ else:
38
38
  __all__ = (
39
39
  "BatchLoadProgressReportTypeDef",
40
40
  "BatchLoadTaskTypeDef",
41
- "CreateBatchLoadTaskResponseTypeDef",
41
+ "ResponseMetadataTypeDef",
42
42
  "TagTypeDef",
43
43
  "DatabaseTypeDef",
44
44
  "RetentionPropertiesTypeDef",
45
+ "CsvConfigurationOutputTypeDef",
45
46
  "CsvConfigurationTypeDef",
47
+ "DataModelS3ConfigurationOutputTypeDef",
46
48
  "DataModelS3ConfigurationTypeDef",
49
+ "DimensionMappingOutputTypeDef",
47
50
  "DimensionMappingTypeDef",
51
+ "DataSourceS3ConfigurationOutputTypeDef",
48
52
  "DataSourceS3ConfigurationTypeDef",
49
53
  "DeleteDatabaseRequestRequestTypeDef",
50
54
  "DeleteTableRequestRequestTypeDef",
@@ -53,44 +57,59 @@ __all__ = (
53
57
  "EndpointTypeDef",
54
58
  "DescribeTableRequestRequestTypeDef",
55
59
  "DimensionTypeDef",
56
- "EmptyResponseMetadataTypeDef",
57
60
  "ListBatchLoadTasksRequestRequestTypeDef",
58
61
  "ListDatabasesRequestRequestTypeDef",
59
62
  "ListTablesRequestRequestTypeDef",
60
63
  "ListTagsForResourceRequestRequestTypeDef",
64
+ "TagOutputTypeDef",
65
+ "S3ConfigurationOutputTypeDef",
61
66
  "S3ConfigurationTypeDef",
62
67
  "MeasureValueTypeDef",
68
+ "MultiMeasureAttributeMappingOutputTypeDef",
63
69
  "MultiMeasureAttributeMappingTypeDef",
70
+ "PartitionKeyOutputTypeDef",
64
71
  "PartitionKeyTypeDef",
65
72
  "RecordsIngestedTypeDef",
73
+ "ReportS3ConfigurationOutputTypeDef",
66
74
  "ReportS3ConfigurationTypeDef",
67
- "ResponseMetadataTypeDef",
68
75
  "ResumeBatchLoadTaskRequestRequestTypeDef",
76
+ "RetentionPropertiesOutputTypeDef",
69
77
  "UntagResourceRequestRequestTypeDef",
70
78
  "UpdateDatabaseRequestRequestTypeDef",
79
+ "CreateBatchLoadTaskResponseTypeDef",
80
+ "EmptyResponseMetadataTypeDef",
71
81
  "ListBatchLoadTasksResponseTypeDef",
72
82
  "CreateDatabaseRequestRequestTypeDef",
73
- "ListTagsForResourceResponseTypeDef",
74
83
  "TagResourceRequestRequestTypeDef",
75
84
  "CreateDatabaseResponseTypeDef",
76
85
  "DescribeDatabaseResponseTypeDef",
77
86
  "ListDatabasesResponseTypeDef",
78
87
  "UpdateDatabaseResponseTypeDef",
88
+ "DataSourceConfigurationOutputTypeDef",
79
89
  "DataSourceConfigurationTypeDef",
80
90
  "DescribeEndpointsResponseTypeDef",
91
+ "ListTagsForResourceResponseTypeDef",
92
+ "MagneticStoreRejectedDataLocationOutputTypeDef",
81
93
  "MagneticStoreRejectedDataLocationTypeDef",
82
94
  "RecordTypeDef",
95
+ "MixedMeasureMappingOutputTypeDef",
96
+ "MultiMeasureMappingsOutputTypeDef",
83
97
  "MixedMeasureMappingTypeDef",
84
98
  "MultiMeasureMappingsTypeDef",
99
+ "SchemaOutputTypeDef",
85
100
  "SchemaTypeDef",
86
101
  "WriteRecordsResponseTypeDef",
102
+ "ReportConfigurationOutputTypeDef",
87
103
  "ReportConfigurationTypeDef",
104
+ "MagneticStoreWritePropertiesOutputTypeDef",
88
105
  "MagneticStoreWritePropertiesTypeDef",
89
106
  "WriteRecordsRequestRequestTypeDef",
107
+ "DataModelOutputTypeDef",
90
108
  "DataModelTypeDef",
91
- "CreateTableRequestRequestTypeDef",
92
109
  "TableTypeDef",
110
+ "CreateTableRequestRequestTypeDef",
93
111
  "UpdateTableRequestRequestTypeDef",
112
+ "DataModelConfigurationOutputTypeDef",
94
113
  "DataModelConfigurationTypeDef",
95
114
  "CreateTableResponseTypeDef",
96
115
  "DescribeTableResponseTypeDef",
@@ -128,11 +147,14 @@ BatchLoadTaskTypeDef = TypedDict(
128
147
  total=False,
129
148
  )
130
149
 
131
- CreateBatchLoadTaskResponseTypeDef = TypedDict(
132
- "CreateBatchLoadTaskResponseTypeDef",
150
+ ResponseMetadataTypeDef = TypedDict(
151
+ "ResponseMetadataTypeDef",
133
152
  {
134
- "TaskId": str,
135
- "ResponseMetadata": "ResponseMetadataTypeDef",
153
+ "RequestId": str,
154
+ "HostId": str,
155
+ "HTTPStatusCode": int,
156
+ "HTTPHeaders": Dict[str, str],
157
+ "RetryAttempts": int,
136
158
  },
137
159
  )
138
160
 
@@ -165,6 +187,18 @@ RetentionPropertiesTypeDef = TypedDict(
165
187
  },
166
188
  )
167
189
 
190
+ CsvConfigurationOutputTypeDef = TypedDict(
191
+ "CsvConfigurationOutputTypeDef",
192
+ {
193
+ "ColumnSeparator": str,
194
+ "EscapeChar": str,
195
+ "QuoteChar": str,
196
+ "NullValue": str,
197
+ "TrimWhiteSpace": bool,
198
+ },
199
+ total=False,
200
+ )
201
+
168
202
  CsvConfigurationTypeDef = TypedDict(
169
203
  "CsvConfigurationTypeDef",
170
204
  {
@@ -177,6 +211,15 @@ CsvConfigurationTypeDef = TypedDict(
177
211
  total=False,
178
212
  )
179
213
 
214
+ DataModelS3ConfigurationOutputTypeDef = TypedDict(
215
+ "DataModelS3ConfigurationOutputTypeDef",
216
+ {
217
+ "BucketName": str,
218
+ "ObjectKey": str,
219
+ },
220
+ total=False,
221
+ )
222
+
180
223
  DataModelS3ConfigurationTypeDef = TypedDict(
181
224
  "DataModelS3ConfigurationTypeDef",
182
225
  {
@@ -186,6 +229,15 @@ DataModelS3ConfigurationTypeDef = TypedDict(
186
229
  total=False,
187
230
  )
188
231
 
232
+ DimensionMappingOutputTypeDef = TypedDict(
233
+ "DimensionMappingOutputTypeDef",
234
+ {
235
+ "SourceColumn": str,
236
+ "DestinationColumn": str,
237
+ },
238
+ total=False,
239
+ )
240
+
189
241
  DimensionMappingTypeDef = TypedDict(
190
242
  "DimensionMappingTypeDef",
191
243
  {
@@ -195,6 +247,25 @@ DimensionMappingTypeDef = TypedDict(
195
247
  total=False,
196
248
  )
197
249
 
250
+ _RequiredDataSourceS3ConfigurationOutputTypeDef = TypedDict(
251
+ "_RequiredDataSourceS3ConfigurationOutputTypeDef",
252
+ {
253
+ "BucketName": str,
254
+ },
255
+ )
256
+ _OptionalDataSourceS3ConfigurationOutputTypeDef = TypedDict(
257
+ "_OptionalDataSourceS3ConfigurationOutputTypeDef",
258
+ {
259
+ "ObjectKeyPrefix": str,
260
+ },
261
+ total=False,
262
+ )
263
+
264
+ class DataSourceS3ConfigurationOutputTypeDef(
265
+ _RequiredDataSourceS3ConfigurationOutputTypeDef, _OptionalDataSourceS3ConfigurationOutputTypeDef
266
+ ):
267
+ pass
268
+
198
269
  _RequiredDataSourceS3ConfigurationTypeDef = TypedDict(
199
270
  "_RequiredDataSourceS3ConfigurationTypeDef",
200
271
  {
@@ -277,13 +348,6 @@ _OptionalDimensionTypeDef = TypedDict(
277
348
  class DimensionTypeDef(_RequiredDimensionTypeDef, _OptionalDimensionTypeDef):
278
349
  pass
279
350
 
280
- EmptyResponseMetadataTypeDef = TypedDict(
281
- "EmptyResponseMetadataTypeDef",
282
- {
283
- "ResponseMetadata": "ResponseMetadataTypeDef",
284
- },
285
- )
286
-
287
351
  ListBatchLoadTasksRequestRequestTypeDef = TypedDict(
288
352
  "ListBatchLoadTasksRequestRequestTypeDef",
289
353
  {
@@ -320,6 +384,25 @@ ListTagsForResourceRequestRequestTypeDef = TypedDict(
320
384
  },
321
385
  )
322
386
 
387
+ TagOutputTypeDef = TypedDict(
388
+ "TagOutputTypeDef",
389
+ {
390
+ "Key": str,
391
+ "Value": str,
392
+ },
393
+ )
394
+
395
+ S3ConfigurationOutputTypeDef = TypedDict(
396
+ "S3ConfigurationOutputTypeDef",
397
+ {
398
+ "BucketName": str,
399
+ "ObjectKeyPrefix": str,
400
+ "EncryptionOption": S3EncryptionOptionType,
401
+ "KmsKeyId": str,
402
+ },
403
+ total=False,
404
+ )
405
+
323
406
  S3ConfigurationTypeDef = TypedDict(
324
407
  "S3ConfigurationTypeDef",
325
408
  {
@@ -340,6 +423,27 @@ MeasureValueTypeDef = TypedDict(
340
423
  },
341
424
  )
342
425
 
426
+ _RequiredMultiMeasureAttributeMappingOutputTypeDef = TypedDict(
427
+ "_RequiredMultiMeasureAttributeMappingOutputTypeDef",
428
+ {
429
+ "SourceColumn": str,
430
+ },
431
+ )
432
+ _OptionalMultiMeasureAttributeMappingOutputTypeDef = TypedDict(
433
+ "_OptionalMultiMeasureAttributeMappingOutputTypeDef",
434
+ {
435
+ "TargetMultiMeasureAttributeName": str,
436
+ "MeasureValueType": ScalarMeasureValueTypeType,
437
+ },
438
+ total=False,
439
+ )
440
+
441
+ class MultiMeasureAttributeMappingOutputTypeDef(
442
+ _RequiredMultiMeasureAttributeMappingOutputTypeDef,
443
+ _OptionalMultiMeasureAttributeMappingOutputTypeDef,
444
+ ):
445
+ pass
446
+
343
447
  _RequiredMultiMeasureAttributeMappingTypeDef = TypedDict(
344
448
  "_RequiredMultiMeasureAttributeMappingTypeDef",
345
449
  {
@@ -360,6 +464,26 @@ class MultiMeasureAttributeMappingTypeDef(
360
464
  ):
361
465
  pass
362
466
 
467
+ _RequiredPartitionKeyOutputTypeDef = TypedDict(
468
+ "_RequiredPartitionKeyOutputTypeDef",
469
+ {
470
+ "Type": PartitionKeyTypeType,
471
+ },
472
+ )
473
+ _OptionalPartitionKeyOutputTypeDef = TypedDict(
474
+ "_OptionalPartitionKeyOutputTypeDef",
475
+ {
476
+ "Name": str,
477
+ "EnforcementInRecord": PartitionKeyEnforcementLevelType,
478
+ },
479
+ total=False,
480
+ )
481
+
482
+ class PartitionKeyOutputTypeDef(
483
+ _RequiredPartitionKeyOutputTypeDef, _OptionalPartitionKeyOutputTypeDef
484
+ ):
485
+ pass
486
+
363
487
  _RequiredPartitionKeyTypeDef = TypedDict(
364
488
  "_RequiredPartitionKeyTypeDef",
365
489
  {
@@ -388,6 +512,27 @@ RecordsIngestedTypeDef = TypedDict(
388
512
  total=False,
389
513
  )
390
514
 
515
+ _RequiredReportS3ConfigurationOutputTypeDef = TypedDict(
516
+ "_RequiredReportS3ConfigurationOutputTypeDef",
517
+ {
518
+ "BucketName": str,
519
+ },
520
+ )
521
+ _OptionalReportS3ConfigurationOutputTypeDef = TypedDict(
522
+ "_OptionalReportS3ConfigurationOutputTypeDef",
523
+ {
524
+ "ObjectKeyPrefix": str,
525
+ "EncryptionOption": S3EncryptionOptionType,
526
+ "KmsKeyId": str,
527
+ },
528
+ total=False,
529
+ )
530
+
531
+ class ReportS3ConfigurationOutputTypeDef(
532
+ _RequiredReportS3ConfigurationOutputTypeDef, _OptionalReportS3ConfigurationOutputTypeDef
533
+ ):
534
+ pass
535
+
391
536
  _RequiredReportS3ConfigurationTypeDef = TypedDict(
392
537
  "_RequiredReportS3ConfigurationTypeDef",
393
538
  {
@@ -409,21 +554,18 @@ class ReportS3ConfigurationTypeDef(
409
554
  ):
410
555
  pass
411
556
 
412
- ResponseMetadataTypeDef = TypedDict(
413
- "ResponseMetadataTypeDef",
557
+ ResumeBatchLoadTaskRequestRequestTypeDef = TypedDict(
558
+ "ResumeBatchLoadTaskRequestRequestTypeDef",
414
559
  {
415
- "RequestId": str,
416
- "HostId": str,
417
- "HTTPStatusCode": int,
418
- "HTTPHeaders": Dict[str, str],
419
- "RetryAttempts": int,
560
+ "TaskId": str,
420
561
  },
421
562
  )
422
563
 
423
- ResumeBatchLoadTaskRequestRequestTypeDef = TypedDict(
424
- "ResumeBatchLoadTaskRequestRequestTypeDef",
564
+ RetentionPropertiesOutputTypeDef = TypedDict(
565
+ "RetentionPropertiesOutputTypeDef",
425
566
  {
426
- "TaskId": str,
567
+ "MemoryStoreRetentionPeriodInHours": int,
568
+ "MagneticStoreRetentionPeriodInDays": int,
427
569
  },
428
570
  )
429
571
 
@@ -443,12 +585,27 @@ UpdateDatabaseRequestRequestTypeDef = TypedDict(
443
585
  },
444
586
  )
445
587
 
588
+ CreateBatchLoadTaskResponseTypeDef = TypedDict(
589
+ "CreateBatchLoadTaskResponseTypeDef",
590
+ {
591
+ "TaskId": str,
592
+ "ResponseMetadata": ResponseMetadataTypeDef,
593
+ },
594
+ )
595
+
596
+ EmptyResponseMetadataTypeDef = TypedDict(
597
+ "EmptyResponseMetadataTypeDef",
598
+ {
599
+ "ResponseMetadata": ResponseMetadataTypeDef,
600
+ },
601
+ )
602
+
446
603
  ListBatchLoadTasksResponseTypeDef = TypedDict(
447
604
  "ListBatchLoadTasksResponseTypeDef",
448
605
  {
449
606
  "NextToken": str,
450
607
  "BatchLoadTasks": List[BatchLoadTaskTypeDef],
451
- "ResponseMetadata": "ResponseMetadataTypeDef",
608
+ "ResponseMetadata": ResponseMetadataTypeDef,
452
609
  },
453
610
  )
454
611
 
@@ -472,14 +629,6 @@ class CreateDatabaseRequestRequestTypeDef(
472
629
  ):
473
630
  pass
474
631
 
475
- ListTagsForResourceResponseTypeDef = TypedDict(
476
- "ListTagsForResourceResponseTypeDef",
477
- {
478
- "Tags": List[TagTypeDef],
479
- "ResponseMetadata": "ResponseMetadataTypeDef",
480
- },
481
- )
482
-
483
632
  TagResourceRequestRequestTypeDef = TypedDict(
484
633
  "TagResourceRequestRequestTypeDef",
485
634
  {
@@ -492,7 +641,7 @@ CreateDatabaseResponseTypeDef = TypedDict(
492
641
  "CreateDatabaseResponseTypeDef",
493
642
  {
494
643
  "Database": DatabaseTypeDef,
495
- "ResponseMetadata": "ResponseMetadataTypeDef",
644
+ "ResponseMetadata": ResponseMetadataTypeDef,
496
645
  },
497
646
  )
498
647
 
@@ -500,7 +649,7 @@ DescribeDatabaseResponseTypeDef = TypedDict(
500
649
  "DescribeDatabaseResponseTypeDef",
501
650
  {
502
651
  "Database": DatabaseTypeDef,
503
- "ResponseMetadata": "ResponseMetadataTypeDef",
652
+ "ResponseMetadata": ResponseMetadataTypeDef,
504
653
  },
505
654
  )
506
655
 
@@ -509,7 +658,7 @@ ListDatabasesResponseTypeDef = TypedDict(
509
658
  {
510
659
  "Databases": List[DatabaseTypeDef],
511
660
  "NextToken": str,
512
- "ResponseMetadata": "ResponseMetadataTypeDef",
661
+ "ResponseMetadata": ResponseMetadataTypeDef,
513
662
  },
514
663
  )
515
664
 
@@ -517,10 +666,30 @@ UpdateDatabaseResponseTypeDef = TypedDict(
517
666
  "UpdateDatabaseResponseTypeDef",
518
667
  {
519
668
  "Database": DatabaseTypeDef,
520
- "ResponseMetadata": "ResponseMetadataTypeDef",
669
+ "ResponseMetadata": ResponseMetadataTypeDef,
521
670
  },
522
671
  )
523
672
 
673
+ _RequiredDataSourceConfigurationOutputTypeDef = TypedDict(
674
+ "_RequiredDataSourceConfigurationOutputTypeDef",
675
+ {
676
+ "DataSourceS3Configuration": DataSourceS3ConfigurationOutputTypeDef,
677
+ "DataFormat": Literal["CSV"],
678
+ },
679
+ )
680
+ _OptionalDataSourceConfigurationOutputTypeDef = TypedDict(
681
+ "_OptionalDataSourceConfigurationOutputTypeDef",
682
+ {
683
+ "CsvConfiguration": CsvConfigurationOutputTypeDef,
684
+ },
685
+ total=False,
686
+ )
687
+
688
+ class DataSourceConfigurationOutputTypeDef(
689
+ _RequiredDataSourceConfigurationOutputTypeDef, _OptionalDataSourceConfigurationOutputTypeDef
690
+ ):
691
+ pass
692
+
524
693
  _RequiredDataSourceConfigurationTypeDef = TypedDict(
525
694
  "_RequiredDataSourceConfigurationTypeDef",
526
695
  {
@@ -545,10 +714,26 @@ DescribeEndpointsResponseTypeDef = TypedDict(
545
714
  "DescribeEndpointsResponseTypeDef",
546
715
  {
547
716
  "Endpoints": List[EndpointTypeDef],
548
- "ResponseMetadata": "ResponseMetadataTypeDef",
717
+ "ResponseMetadata": ResponseMetadataTypeDef,
718
+ },
719
+ )
720
+
721
+ ListTagsForResourceResponseTypeDef = TypedDict(
722
+ "ListTagsForResourceResponseTypeDef",
723
+ {
724
+ "Tags": List[TagOutputTypeDef],
725
+ "ResponseMetadata": ResponseMetadataTypeDef,
549
726
  },
550
727
  )
551
728
 
729
+ MagneticStoreRejectedDataLocationOutputTypeDef = TypedDict(
730
+ "MagneticStoreRejectedDataLocationOutputTypeDef",
731
+ {
732
+ "S3Configuration": S3ConfigurationOutputTypeDef,
733
+ },
734
+ total=False,
735
+ )
736
+
552
737
  MagneticStoreRejectedDataLocationTypeDef = TypedDict(
553
738
  "MagneticStoreRejectedDataLocationTypeDef",
554
739
  {
@@ -572,6 +757,47 @@ RecordTypeDef = TypedDict(
572
757
  total=False,
573
758
  )
574
759
 
760
+ _RequiredMixedMeasureMappingOutputTypeDef = TypedDict(
761
+ "_RequiredMixedMeasureMappingOutputTypeDef",
762
+ {
763
+ "MeasureValueType": MeasureValueTypeType,
764
+ },
765
+ )
766
+ _OptionalMixedMeasureMappingOutputTypeDef = TypedDict(
767
+ "_OptionalMixedMeasureMappingOutputTypeDef",
768
+ {
769
+ "MeasureName": str,
770
+ "SourceColumn": str,
771
+ "TargetMeasureName": str,
772
+ "MultiMeasureAttributeMappings": List[MultiMeasureAttributeMappingOutputTypeDef],
773
+ },
774
+ total=False,
775
+ )
776
+
777
+ class MixedMeasureMappingOutputTypeDef(
778
+ _RequiredMixedMeasureMappingOutputTypeDef, _OptionalMixedMeasureMappingOutputTypeDef
779
+ ):
780
+ pass
781
+
782
+ _RequiredMultiMeasureMappingsOutputTypeDef = TypedDict(
783
+ "_RequiredMultiMeasureMappingsOutputTypeDef",
784
+ {
785
+ "MultiMeasureAttributeMappings": List[MultiMeasureAttributeMappingOutputTypeDef],
786
+ },
787
+ )
788
+ _OptionalMultiMeasureMappingsOutputTypeDef = TypedDict(
789
+ "_OptionalMultiMeasureMappingsOutputTypeDef",
790
+ {
791
+ "TargetMultiMeasureName": str,
792
+ },
793
+ total=False,
794
+ )
795
+
796
+ class MultiMeasureMappingsOutputTypeDef(
797
+ _RequiredMultiMeasureMappingsOutputTypeDef, _OptionalMultiMeasureMappingsOutputTypeDef
798
+ ):
799
+ pass
800
+
575
801
  _RequiredMixedMeasureMappingTypeDef = TypedDict(
576
802
  "_RequiredMixedMeasureMappingTypeDef",
577
803
  {
@@ -613,6 +839,14 @@ class MultiMeasureMappingsTypeDef(
613
839
  ):
614
840
  pass
615
841
 
842
+ SchemaOutputTypeDef = TypedDict(
843
+ "SchemaOutputTypeDef",
844
+ {
845
+ "CompositePartitionKey": List[PartitionKeyOutputTypeDef],
846
+ },
847
+ total=False,
848
+ )
849
+
616
850
  SchemaTypeDef = TypedDict(
617
851
  "SchemaTypeDef",
618
852
  {
@@ -625,10 +859,18 @@ WriteRecordsResponseTypeDef = TypedDict(
625
859
  "WriteRecordsResponseTypeDef",
626
860
  {
627
861
  "RecordsIngested": RecordsIngestedTypeDef,
628
- "ResponseMetadata": "ResponseMetadataTypeDef",
862
+ "ResponseMetadata": ResponseMetadataTypeDef,
629
863
  },
630
864
  )
631
865
 
866
+ ReportConfigurationOutputTypeDef = TypedDict(
867
+ "ReportConfigurationOutputTypeDef",
868
+ {
869
+ "ReportS3Configuration": ReportS3ConfigurationOutputTypeDef,
870
+ },
871
+ total=False,
872
+ )
873
+
632
874
  ReportConfigurationTypeDef = TypedDict(
633
875
  "ReportConfigurationTypeDef",
634
876
  {
@@ -637,6 +879,26 @@ ReportConfigurationTypeDef = TypedDict(
637
879
  total=False,
638
880
  )
639
881
 
882
+ _RequiredMagneticStoreWritePropertiesOutputTypeDef = TypedDict(
883
+ "_RequiredMagneticStoreWritePropertiesOutputTypeDef",
884
+ {
885
+ "EnableMagneticStoreWrites": bool,
886
+ },
887
+ )
888
+ _OptionalMagneticStoreWritePropertiesOutputTypeDef = TypedDict(
889
+ "_OptionalMagneticStoreWritePropertiesOutputTypeDef",
890
+ {
891
+ "MagneticStoreRejectedDataLocation": MagneticStoreRejectedDataLocationOutputTypeDef,
892
+ },
893
+ total=False,
894
+ )
895
+
896
+ class MagneticStoreWritePropertiesOutputTypeDef(
897
+ _RequiredMagneticStoreWritePropertiesOutputTypeDef,
898
+ _OptionalMagneticStoreWritePropertiesOutputTypeDef,
899
+ ):
900
+ pass
901
+
640
902
  _RequiredMagneticStoreWritePropertiesTypeDef = TypedDict(
641
903
  "_RequiredMagneticStoreWritePropertiesTypeDef",
642
904
  {
@@ -677,6 +939,27 @@ class WriteRecordsRequestRequestTypeDef(
677
939
  ):
678
940
  pass
679
941
 
942
+ _RequiredDataModelOutputTypeDef = TypedDict(
943
+ "_RequiredDataModelOutputTypeDef",
944
+ {
945
+ "DimensionMappings": List[DimensionMappingOutputTypeDef],
946
+ },
947
+ )
948
+ _OptionalDataModelOutputTypeDef = TypedDict(
949
+ "_OptionalDataModelOutputTypeDef",
950
+ {
951
+ "TimeColumn": str,
952
+ "TimeUnit": TimeUnitType,
953
+ "MultiMeasureMappings": MultiMeasureMappingsOutputTypeDef,
954
+ "MixedMeasureMappings": List[MixedMeasureMappingOutputTypeDef],
955
+ "MeasureNameColumn": str,
956
+ },
957
+ total=False,
958
+ )
959
+
960
+ class DataModelOutputTypeDef(_RequiredDataModelOutputTypeDef, _OptionalDataModelOutputTypeDef):
961
+ pass
962
+
680
963
  _RequiredDataModelTypeDef = TypedDict(
681
964
  "_RequiredDataModelTypeDef",
682
965
  {
@@ -698,6 +981,22 @@ _OptionalDataModelTypeDef = TypedDict(
698
981
  class DataModelTypeDef(_RequiredDataModelTypeDef, _OptionalDataModelTypeDef):
699
982
  pass
700
983
 
984
+ TableTypeDef = TypedDict(
985
+ "TableTypeDef",
986
+ {
987
+ "Arn": str,
988
+ "TableName": str,
989
+ "DatabaseName": str,
990
+ "TableStatus": TableStatusType,
991
+ "RetentionProperties": RetentionPropertiesOutputTypeDef,
992
+ "CreationTime": datetime,
993
+ "LastUpdatedTime": datetime,
994
+ "MagneticStoreWriteProperties": MagneticStoreWritePropertiesOutputTypeDef,
995
+ "Schema": SchemaOutputTypeDef,
996
+ },
997
+ total=False,
998
+ )
999
+
701
1000
  _RequiredCreateTableRequestRequestTypeDef = TypedDict(
702
1001
  "_RequiredCreateTableRequestRequestTypeDef",
703
1002
  {
@@ -721,22 +1020,6 @@ class CreateTableRequestRequestTypeDef(
721
1020
  ):
722
1021
  pass
723
1022
 
724
- TableTypeDef = TypedDict(
725
- "TableTypeDef",
726
- {
727
- "Arn": str,
728
- "TableName": str,
729
- "DatabaseName": str,
730
- "TableStatus": TableStatusType,
731
- "RetentionProperties": RetentionPropertiesTypeDef,
732
- "CreationTime": datetime,
733
- "LastUpdatedTime": datetime,
734
- "MagneticStoreWriteProperties": MagneticStoreWritePropertiesTypeDef,
735
- "Schema": SchemaTypeDef,
736
- },
737
- total=False,
738
- )
739
-
740
1023
  _RequiredUpdateTableRequestRequestTypeDef = TypedDict(
741
1024
  "_RequiredUpdateTableRequestRequestTypeDef",
742
1025
  {
@@ -759,6 +1042,15 @@ class UpdateTableRequestRequestTypeDef(
759
1042
  ):
760
1043
  pass
761
1044
 
1045
+ DataModelConfigurationOutputTypeDef = TypedDict(
1046
+ "DataModelConfigurationOutputTypeDef",
1047
+ {
1048
+ "DataModel": DataModelOutputTypeDef,
1049
+ "DataModelS3Configuration": DataModelS3ConfigurationOutputTypeDef,
1050
+ },
1051
+ total=False,
1052
+ )
1053
+
762
1054
  DataModelConfigurationTypeDef = TypedDict(
763
1055
  "DataModelConfigurationTypeDef",
764
1056
  {
@@ -772,7 +1064,7 @@ CreateTableResponseTypeDef = TypedDict(
772
1064
  "CreateTableResponseTypeDef",
773
1065
  {
774
1066
  "Table": TableTypeDef,
775
- "ResponseMetadata": "ResponseMetadataTypeDef",
1067
+ "ResponseMetadata": ResponseMetadataTypeDef,
776
1068
  },
777
1069
  )
778
1070
 
@@ -780,7 +1072,7 @@ DescribeTableResponseTypeDef = TypedDict(
780
1072
  "DescribeTableResponseTypeDef",
781
1073
  {
782
1074
  "Table": TableTypeDef,
783
- "ResponseMetadata": "ResponseMetadataTypeDef",
1075
+ "ResponseMetadata": ResponseMetadataTypeDef,
784
1076
  },
785
1077
  )
786
1078
 
@@ -789,7 +1081,7 @@ ListTablesResponseTypeDef = TypedDict(
789
1081
  {
790
1082
  "Tables": List[TableTypeDef],
791
1083
  "NextToken": str,
792
- "ResponseMetadata": "ResponseMetadataTypeDef",
1084
+ "ResponseMetadata": ResponseMetadataTypeDef,
793
1085
  },
794
1086
  )
795
1087
 
@@ -797,7 +1089,7 @@ UpdateTableResponseTypeDef = TypedDict(
797
1089
  "UpdateTableResponseTypeDef",
798
1090
  {
799
1091
  "Table": TableTypeDef,
800
- "ResponseMetadata": "ResponseMetadataTypeDef",
1092
+ "ResponseMetadata": ResponseMetadataTypeDef,
801
1093
  },
802
1094
  )
803
1095
 
@@ -806,10 +1098,10 @@ BatchLoadTaskDescriptionTypeDef = TypedDict(
806
1098
  {
807
1099
  "TaskId": str,
808
1100
  "ErrorMessage": str,
809
- "DataSourceConfiguration": DataSourceConfigurationTypeDef,
1101
+ "DataSourceConfiguration": DataSourceConfigurationOutputTypeDef,
810
1102
  "ProgressReport": BatchLoadProgressReportTypeDef,
811
- "ReportConfiguration": ReportConfigurationTypeDef,
812
- "DataModelConfiguration": DataModelConfigurationTypeDef,
1103
+ "ReportConfiguration": ReportConfigurationOutputTypeDef,
1104
+ "DataModelConfiguration": DataModelConfigurationOutputTypeDef,
813
1105
  "TargetDatabaseName": str,
814
1106
  "TargetTableName": str,
815
1107
  "TaskStatus": BatchLoadStatusType,
@@ -850,6 +1142,6 @@ DescribeBatchLoadTaskResponseTypeDef = TypedDict(
850
1142
  "DescribeBatchLoadTaskResponseTypeDef",
851
1143
  {
852
1144
  "BatchLoadTaskDescription": BatchLoadTaskDescriptionTypeDef,
853
- "ResponseMetadata": "ResponseMetadataTypeDef",
1145
+ "ResponseMetadata": ResponseMetadataTypeDef,
854
1146
  },
855
1147
  )
@@ -1,4 +1,4 @@
1
1
  """
2
2
  Source of truth for version.
3
3
  """
4
- __version__ = "1.27.0"
4
+ __version__ = "1.28.12"