mypy-boto3-timestream-write 1.28.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.

@@ -39,13 +39,17 @@ else:
39
39
  __all__ = (
40
40
  "BatchLoadProgressReportTypeDef",
41
41
  "BatchLoadTaskTypeDef",
42
- "CreateBatchLoadTaskResponseTypeDef",
42
+ "ResponseMetadataTypeDef",
43
43
  "TagTypeDef",
44
44
  "DatabaseTypeDef",
45
45
  "RetentionPropertiesTypeDef",
46
+ "CsvConfigurationOutputTypeDef",
46
47
  "CsvConfigurationTypeDef",
48
+ "DataModelS3ConfigurationOutputTypeDef",
47
49
  "DataModelS3ConfigurationTypeDef",
50
+ "DimensionMappingOutputTypeDef",
48
51
  "DimensionMappingTypeDef",
52
+ "DataSourceS3ConfigurationOutputTypeDef",
49
53
  "DataSourceS3ConfigurationTypeDef",
50
54
  "DeleteDatabaseRequestRequestTypeDef",
51
55
  "DeleteTableRequestRequestTypeDef",
@@ -54,44 +58,59 @@ __all__ = (
54
58
  "EndpointTypeDef",
55
59
  "DescribeTableRequestRequestTypeDef",
56
60
  "DimensionTypeDef",
57
- "EmptyResponseMetadataTypeDef",
58
61
  "ListBatchLoadTasksRequestRequestTypeDef",
59
62
  "ListDatabasesRequestRequestTypeDef",
60
63
  "ListTablesRequestRequestTypeDef",
61
64
  "ListTagsForResourceRequestRequestTypeDef",
65
+ "TagOutputTypeDef",
66
+ "S3ConfigurationOutputTypeDef",
62
67
  "S3ConfigurationTypeDef",
63
68
  "MeasureValueTypeDef",
69
+ "MultiMeasureAttributeMappingOutputTypeDef",
64
70
  "MultiMeasureAttributeMappingTypeDef",
71
+ "PartitionKeyOutputTypeDef",
65
72
  "PartitionKeyTypeDef",
66
73
  "RecordsIngestedTypeDef",
74
+ "ReportS3ConfigurationOutputTypeDef",
67
75
  "ReportS3ConfigurationTypeDef",
68
- "ResponseMetadataTypeDef",
69
76
  "ResumeBatchLoadTaskRequestRequestTypeDef",
77
+ "RetentionPropertiesOutputTypeDef",
70
78
  "UntagResourceRequestRequestTypeDef",
71
79
  "UpdateDatabaseRequestRequestTypeDef",
80
+ "CreateBatchLoadTaskResponseTypeDef",
81
+ "EmptyResponseMetadataTypeDef",
72
82
  "ListBatchLoadTasksResponseTypeDef",
73
83
  "CreateDatabaseRequestRequestTypeDef",
74
- "ListTagsForResourceResponseTypeDef",
75
84
  "TagResourceRequestRequestTypeDef",
76
85
  "CreateDatabaseResponseTypeDef",
77
86
  "DescribeDatabaseResponseTypeDef",
78
87
  "ListDatabasesResponseTypeDef",
79
88
  "UpdateDatabaseResponseTypeDef",
89
+ "DataSourceConfigurationOutputTypeDef",
80
90
  "DataSourceConfigurationTypeDef",
81
91
  "DescribeEndpointsResponseTypeDef",
92
+ "ListTagsForResourceResponseTypeDef",
93
+ "MagneticStoreRejectedDataLocationOutputTypeDef",
82
94
  "MagneticStoreRejectedDataLocationTypeDef",
83
95
  "RecordTypeDef",
96
+ "MixedMeasureMappingOutputTypeDef",
97
+ "MultiMeasureMappingsOutputTypeDef",
84
98
  "MixedMeasureMappingTypeDef",
85
99
  "MultiMeasureMappingsTypeDef",
100
+ "SchemaOutputTypeDef",
86
101
  "SchemaTypeDef",
87
102
  "WriteRecordsResponseTypeDef",
103
+ "ReportConfigurationOutputTypeDef",
88
104
  "ReportConfigurationTypeDef",
105
+ "MagneticStoreWritePropertiesOutputTypeDef",
89
106
  "MagneticStoreWritePropertiesTypeDef",
90
107
  "WriteRecordsRequestRequestTypeDef",
108
+ "DataModelOutputTypeDef",
91
109
  "DataModelTypeDef",
92
- "CreateTableRequestRequestTypeDef",
93
110
  "TableTypeDef",
111
+ "CreateTableRequestRequestTypeDef",
94
112
  "UpdateTableRequestRequestTypeDef",
113
+ "DataModelConfigurationOutputTypeDef",
95
114
  "DataModelConfigurationTypeDef",
96
115
  "CreateTableResponseTypeDef",
97
116
  "DescribeTableResponseTypeDef",
@@ -129,11 +148,14 @@ BatchLoadTaskTypeDef = TypedDict(
129
148
  total=False,
130
149
  )
131
150
 
132
- CreateBatchLoadTaskResponseTypeDef = TypedDict(
133
- "CreateBatchLoadTaskResponseTypeDef",
151
+ ResponseMetadataTypeDef = TypedDict(
152
+ "ResponseMetadataTypeDef",
134
153
  {
135
- "TaskId": str,
136
- "ResponseMetadata": "ResponseMetadataTypeDef",
154
+ "RequestId": str,
155
+ "HostId": str,
156
+ "HTTPStatusCode": int,
157
+ "HTTPHeaders": Dict[str, str],
158
+ "RetryAttempts": int,
137
159
  },
138
160
  )
139
161
 
@@ -166,6 +188,18 @@ RetentionPropertiesTypeDef = TypedDict(
166
188
  },
167
189
  )
168
190
 
191
+ CsvConfigurationOutputTypeDef = TypedDict(
192
+ "CsvConfigurationOutputTypeDef",
193
+ {
194
+ "ColumnSeparator": str,
195
+ "EscapeChar": str,
196
+ "QuoteChar": str,
197
+ "NullValue": str,
198
+ "TrimWhiteSpace": bool,
199
+ },
200
+ total=False,
201
+ )
202
+
169
203
  CsvConfigurationTypeDef = TypedDict(
170
204
  "CsvConfigurationTypeDef",
171
205
  {
@@ -178,6 +212,15 @@ CsvConfigurationTypeDef = TypedDict(
178
212
  total=False,
179
213
  )
180
214
 
215
+ DataModelS3ConfigurationOutputTypeDef = TypedDict(
216
+ "DataModelS3ConfigurationOutputTypeDef",
217
+ {
218
+ "BucketName": str,
219
+ "ObjectKey": str,
220
+ },
221
+ total=False,
222
+ )
223
+
181
224
  DataModelS3ConfigurationTypeDef = TypedDict(
182
225
  "DataModelS3ConfigurationTypeDef",
183
226
  {
@@ -187,6 +230,15 @@ DataModelS3ConfigurationTypeDef = TypedDict(
187
230
  total=False,
188
231
  )
189
232
 
233
+ DimensionMappingOutputTypeDef = TypedDict(
234
+ "DimensionMappingOutputTypeDef",
235
+ {
236
+ "SourceColumn": str,
237
+ "DestinationColumn": str,
238
+ },
239
+ total=False,
240
+ )
241
+
190
242
  DimensionMappingTypeDef = TypedDict(
191
243
  "DimensionMappingTypeDef",
192
244
  {
@@ -196,6 +248,27 @@ DimensionMappingTypeDef = TypedDict(
196
248
  total=False,
197
249
  )
198
250
 
251
+ _RequiredDataSourceS3ConfigurationOutputTypeDef = TypedDict(
252
+ "_RequiredDataSourceS3ConfigurationOutputTypeDef",
253
+ {
254
+ "BucketName": str,
255
+ },
256
+ )
257
+ _OptionalDataSourceS3ConfigurationOutputTypeDef = TypedDict(
258
+ "_OptionalDataSourceS3ConfigurationOutputTypeDef",
259
+ {
260
+ "ObjectKeyPrefix": str,
261
+ },
262
+ total=False,
263
+ )
264
+
265
+
266
+ class DataSourceS3ConfigurationOutputTypeDef(
267
+ _RequiredDataSourceS3ConfigurationOutputTypeDef, _OptionalDataSourceS3ConfigurationOutputTypeDef
268
+ ):
269
+ pass
270
+
271
+
199
272
  _RequiredDataSourceS3ConfigurationTypeDef = TypedDict(
200
273
  "_RequiredDataSourceS3ConfigurationTypeDef",
201
274
  {
@@ -282,13 +355,6 @@ class DimensionTypeDef(_RequiredDimensionTypeDef, _OptionalDimensionTypeDef):
282
355
  pass
283
356
 
284
357
 
285
- EmptyResponseMetadataTypeDef = TypedDict(
286
- "EmptyResponseMetadataTypeDef",
287
- {
288
- "ResponseMetadata": "ResponseMetadataTypeDef",
289
- },
290
- )
291
-
292
358
  ListBatchLoadTasksRequestRequestTypeDef = TypedDict(
293
359
  "ListBatchLoadTasksRequestRequestTypeDef",
294
360
  {
@@ -325,6 +391,25 @@ ListTagsForResourceRequestRequestTypeDef = TypedDict(
325
391
  },
326
392
  )
327
393
 
394
+ TagOutputTypeDef = TypedDict(
395
+ "TagOutputTypeDef",
396
+ {
397
+ "Key": str,
398
+ "Value": str,
399
+ },
400
+ )
401
+
402
+ S3ConfigurationOutputTypeDef = TypedDict(
403
+ "S3ConfigurationOutputTypeDef",
404
+ {
405
+ "BucketName": str,
406
+ "ObjectKeyPrefix": str,
407
+ "EncryptionOption": S3EncryptionOptionType,
408
+ "KmsKeyId": str,
409
+ },
410
+ total=False,
411
+ )
412
+
328
413
  S3ConfigurationTypeDef = TypedDict(
329
414
  "S3ConfigurationTypeDef",
330
415
  {
@@ -345,6 +430,29 @@ MeasureValueTypeDef = TypedDict(
345
430
  },
346
431
  )
347
432
 
433
+ _RequiredMultiMeasureAttributeMappingOutputTypeDef = TypedDict(
434
+ "_RequiredMultiMeasureAttributeMappingOutputTypeDef",
435
+ {
436
+ "SourceColumn": str,
437
+ },
438
+ )
439
+ _OptionalMultiMeasureAttributeMappingOutputTypeDef = TypedDict(
440
+ "_OptionalMultiMeasureAttributeMappingOutputTypeDef",
441
+ {
442
+ "TargetMultiMeasureAttributeName": str,
443
+ "MeasureValueType": ScalarMeasureValueTypeType,
444
+ },
445
+ total=False,
446
+ )
447
+
448
+
449
+ class MultiMeasureAttributeMappingOutputTypeDef(
450
+ _RequiredMultiMeasureAttributeMappingOutputTypeDef,
451
+ _OptionalMultiMeasureAttributeMappingOutputTypeDef,
452
+ ):
453
+ pass
454
+
455
+
348
456
  _RequiredMultiMeasureAttributeMappingTypeDef = TypedDict(
349
457
  "_RequiredMultiMeasureAttributeMappingTypeDef",
350
458
  {
@@ -367,6 +475,28 @@ class MultiMeasureAttributeMappingTypeDef(
367
475
  pass
368
476
 
369
477
 
478
+ _RequiredPartitionKeyOutputTypeDef = TypedDict(
479
+ "_RequiredPartitionKeyOutputTypeDef",
480
+ {
481
+ "Type": PartitionKeyTypeType,
482
+ },
483
+ )
484
+ _OptionalPartitionKeyOutputTypeDef = TypedDict(
485
+ "_OptionalPartitionKeyOutputTypeDef",
486
+ {
487
+ "Name": str,
488
+ "EnforcementInRecord": PartitionKeyEnforcementLevelType,
489
+ },
490
+ total=False,
491
+ )
492
+
493
+
494
+ class PartitionKeyOutputTypeDef(
495
+ _RequiredPartitionKeyOutputTypeDef, _OptionalPartitionKeyOutputTypeDef
496
+ ):
497
+ pass
498
+
499
+
370
500
  _RequiredPartitionKeyTypeDef = TypedDict(
371
501
  "_RequiredPartitionKeyTypeDef",
372
502
  {
@@ -397,6 +527,29 @@ RecordsIngestedTypeDef = TypedDict(
397
527
  total=False,
398
528
  )
399
529
 
530
+ _RequiredReportS3ConfigurationOutputTypeDef = TypedDict(
531
+ "_RequiredReportS3ConfigurationOutputTypeDef",
532
+ {
533
+ "BucketName": str,
534
+ },
535
+ )
536
+ _OptionalReportS3ConfigurationOutputTypeDef = TypedDict(
537
+ "_OptionalReportS3ConfigurationOutputTypeDef",
538
+ {
539
+ "ObjectKeyPrefix": str,
540
+ "EncryptionOption": S3EncryptionOptionType,
541
+ "KmsKeyId": str,
542
+ },
543
+ total=False,
544
+ )
545
+
546
+
547
+ class ReportS3ConfigurationOutputTypeDef(
548
+ _RequiredReportS3ConfigurationOutputTypeDef, _OptionalReportS3ConfigurationOutputTypeDef
549
+ ):
550
+ pass
551
+
552
+
400
553
  _RequiredReportS3ConfigurationTypeDef = TypedDict(
401
554
  "_RequiredReportS3ConfigurationTypeDef",
402
555
  {
@@ -420,21 +573,18 @@ class ReportS3ConfigurationTypeDef(
420
573
  pass
421
574
 
422
575
 
423
- ResponseMetadataTypeDef = TypedDict(
424
- "ResponseMetadataTypeDef",
576
+ ResumeBatchLoadTaskRequestRequestTypeDef = TypedDict(
577
+ "ResumeBatchLoadTaskRequestRequestTypeDef",
425
578
  {
426
- "RequestId": str,
427
- "HostId": str,
428
- "HTTPStatusCode": int,
429
- "HTTPHeaders": Dict[str, str],
430
- "RetryAttempts": int,
579
+ "TaskId": str,
431
580
  },
432
581
  )
433
582
 
434
- ResumeBatchLoadTaskRequestRequestTypeDef = TypedDict(
435
- "ResumeBatchLoadTaskRequestRequestTypeDef",
583
+ RetentionPropertiesOutputTypeDef = TypedDict(
584
+ "RetentionPropertiesOutputTypeDef",
436
585
  {
437
- "TaskId": str,
586
+ "MemoryStoreRetentionPeriodInHours": int,
587
+ "MagneticStoreRetentionPeriodInDays": int,
438
588
  },
439
589
  )
440
590
 
@@ -454,12 +604,27 @@ UpdateDatabaseRequestRequestTypeDef = TypedDict(
454
604
  },
455
605
  )
456
606
 
607
+ CreateBatchLoadTaskResponseTypeDef = TypedDict(
608
+ "CreateBatchLoadTaskResponseTypeDef",
609
+ {
610
+ "TaskId": str,
611
+ "ResponseMetadata": ResponseMetadataTypeDef,
612
+ },
613
+ )
614
+
615
+ EmptyResponseMetadataTypeDef = TypedDict(
616
+ "EmptyResponseMetadataTypeDef",
617
+ {
618
+ "ResponseMetadata": ResponseMetadataTypeDef,
619
+ },
620
+ )
621
+
457
622
  ListBatchLoadTasksResponseTypeDef = TypedDict(
458
623
  "ListBatchLoadTasksResponseTypeDef",
459
624
  {
460
625
  "NextToken": str,
461
626
  "BatchLoadTasks": List[BatchLoadTaskTypeDef],
462
- "ResponseMetadata": "ResponseMetadataTypeDef",
627
+ "ResponseMetadata": ResponseMetadataTypeDef,
463
628
  },
464
629
  )
465
630
 
@@ -485,14 +650,6 @@ class CreateDatabaseRequestRequestTypeDef(
485
650
  pass
486
651
 
487
652
 
488
- ListTagsForResourceResponseTypeDef = TypedDict(
489
- "ListTagsForResourceResponseTypeDef",
490
- {
491
- "Tags": List[TagTypeDef],
492
- "ResponseMetadata": "ResponseMetadataTypeDef",
493
- },
494
- )
495
-
496
653
  TagResourceRequestRequestTypeDef = TypedDict(
497
654
  "TagResourceRequestRequestTypeDef",
498
655
  {
@@ -505,7 +662,7 @@ CreateDatabaseResponseTypeDef = TypedDict(
505
662
  "CreateDatabaseResponseTypeDef",
506
663
  {
507
664
  "Database": DatabaseTypeDef,
508
- "ResponseMetadata": "ResponseMetadataTypeDef",
665
+ "ResponseMetadata": ResponseMetadataTypeDef,
509
666
  },
510
667
  )
511
668
 
@@ -513,7 +670,7 @@ DescribeDatabaseResponseTypeDef = TypedDict(
513
670
  "DescribeDatabaseResponseTypeDef",
514
671
  {
515
672
  "Database": DatabaseTypeDef,
516
- "ResponseMetadata": "ResponseMetadataTypeDef",
673
+ "ResponseMetadata": ResponseMetadataTypeDef,
517
674
  },
518
675
  )
519
676
 
@@ -522,7 +679,7 @@ ListDatabasesResponseTypeDef = TypedDict(
522
679
  {
523
680
  "Databases": List[DatabaseTypeDef],
524
681
  "NextToken": str,
525
- "ResponseMetadata": "ResponseMetadataTypeDef",
682
+ "ResponseMetadata": ResponseMetadataTypeDef,
526
683
  },
527
684
  )
528
685
 
@@ -530,10 +687,32 @@ UpdateDatabaseResponseTypeDef = TypedDict(
530
687
  "UpdateDatabaseResponseTypeDef",
531
688
  {
532
689
  "Database": DatabaseTypeDef,
533
- "ResponseMetadata": "ResponseMetadataTypeDef",
690
+ "ResponseMetadata": ResponseMetadataTypeDef,
534
691
  },
535
692
  )
536
693
 
694
+ _RequiredDataSourceConfigurationOutputTypeDef = TypedDict(
695
+ "_RequiredDataSourceConfigurationOutputTypeDef",
696
+ {
697
+ "DataSourceS3Configuration": DataSourceS3ConfigurationOutputTypeDef,
698
+ "DataFormat": Literal["CSV"],
699
+ },
700
+ )
701
+ _OptionalDataSourceConfigurationOutputTypeDef = TypedDict(
702
+ "_OptionalDataSourceConfigurationOutputTypeDef",
703
+ {
704
+ "CsvConfiguration": CsvConfigurationOutputTypeDef,
705
+ },
706
+ total=False,
707
+ )
708
+
709
+
710
+ class DataSourceConfigurationOutputTypeDef(
711
+ _RequiredDataSourceConfigurationOutputTypeDef, _OptionalDataSourceConfigurationOutputTypeDef
712
+ ):
713
+ pass
714
+
715
+
537
716
  _RequiredDataSourceConfigurationTypeDef = TypedDict(
538
717
  "_RequiredDataSourceConfigurationTypeDef",
539
718
  {
@@ -560,8 +739,24 @@ DescribeEndpointsResponseTypeDef = TypedDict(
560
739
  "DescribeEndpointsResponseTypeDef",
561
740
  {
562
741
  "Endpoints": List[EndpointTypeDef],
563
- "ResponseMetadata": "ResponseMetadataTypeDef",
742
+ "ResponseMetadata": ResponseMetadataTypeDef,
743
+ },
744
+ )
745
+
746
+ ListTagsForResourceResponseTypeDef = TypedDict(
747
+ "ListTagsForResourceResponseTypeDef",
748
+ {
749
+ "Tags": List[TagOutputTypeDef],
750
+ "ResponseMetadata": ResponseMetadataTypeDef,
751
+ },
752
+ )
753
+
754
+ MagneticStoreRejectedDataLocationOutputTypeDef = TypedDict(
755
+ "MagneticStoreRejectedDataLocationOutputTypeDef",
756
+ {
757
+ "S3Configuration": S3ConfigurationOutputTypeDef,
564
758
  },
759
+ total=False,
565
760
  )
566
761
 
567
762
  MagneticStoreRejectedDataLocationTypeDef = TypedDict(
@@ -587,6 +782,51 @@ RecordTypeDef = TypedDict(
587
782
  total=False,
588
783
  )
589
784
 
785
+ _RequiredMixedMeasureMappingOutputTypeDef = TypedDict(
786
+ "_RequiredMixedMeasureMappingOutputTypeDef",
787
+ {
788
+ "MeasureValueType": MeasureValueTypeType,
789
+ },
790
+ )
791
+ _OptionalMixedMeasureMappingOutputTypeDef = TypedDict(
792
+ "_OptionalMixedMeasureMappingOutputTypeDef",
793
+ {
794
+ "MeasureName": str,
795
+ "SourceColumn": str,
796
+ "TargetMeasureName": str,
797
+ "MultiMeasureAttributeMappings": List[MultiMeasureAttributeMappingOutputTypeDef],
798
+ },
799
+ total=False,
800
+ )
801
+
802
+
803
+ class MixedMeasureMappingOutputTypeDef(
804
+ _RequiredMixedMeasureMappingOutputTypeDef, _OptionalMixedMeasureMappingOutputTypeDef
805
+ ):
806
+ pass
807
+
808
+
809
+ _RequiredMultiMeasureMappingsOutputTypeDef = TypedDict(
810
+ "_RequiredMultiMeasureMappingsOutputTypeDef",
811
+ {
812
+ "MultiMeasureAttributeMappings": List[MultiMeasureAttributeMappingOutputTypeDef],
813
+ },
814
+ )
815
+ _OptionalMultiMeasureMappingsOutputTypeDef = TypedDict(
816
+ "_OptionalMultiMeasureMappingsOutputTypeDef",
817
+ {
818
+ "TargetMultiMeasureName": str,
819
+ },
820
+ total=False,
821
+ )
822
+
823
+
824
+ class MultiMeasureMappingsOutputTypeDef(
825
+ _RequiredMultiMeasureMappingsOutputTypeDef, _OptionalMultiMeasureMappingsOutputTypeDef
826
+ ):
827
+ pass
828
+
829
+
590
830
  _RequiredMixedMeasureMappingTypeDef = TypedDict(
591
831
  "_RequiredMixedMeasureMappingTypeDef",
592
832
  {
@@ -632,6 +872,14 @@ class MultiMeasureMappingsTypeDef(
632
872
  pass
633
873
 
634
874
 
875
+ SchemaOutputTypeDef = TypedDict(
876
+ "SchemaOutputTypeDef",
877
+ {
878
+ "CompositePartitionKey": List[PartitionKeyOutputTypeDef],
879
+ },
880
+ total=False,
881
+ )
882
+
635
883
  SchemaTypeDef = TypedDict(
636
884
  "SchemaTypeDef",
637
885
  {
@@ -644,8 +892,16 @@ WriteRecordsResponseTypeDef = TypedDict(
644
892
  "WriteRecordsResponseTypeDef",
645
893
  {
646
894
  "RecordsIngested": RecordsIngestedTypeDef,
647
- "ResponseMetadata": "ResponseMetadataTypeDef",
895
+ "ResponseMetadata": ResponseMetadataTypeDef,
896
+ },
897
+ )
898
+
899
+ ReportConfigurationOutputTypeDef = TypedDict(
900
+ "ReportConfigurationOutputTypeDef",
901
+ {
902
+ "ReportS3Configuration": ReportS3ConfigurationOutputTypeDef,
648
903
  },
904
+ total=False,
649
905
  )
650
906
 
651
907
  ReportConfigurationTypeDef = TypedDict(
@@ -656,6 +912,28 @@ ReportConfigurationTypeDef = TypedDict(
656
912
  total=False,
657
913
  )
658
914
 
915
+ _RequiredMagneticStoreWritePropertiesOutputTypeDef = TypedDict(
916
+ "_RequiredMagneticStoreWritePropertiesOutputTypeDef",
917
+ {
918
+ "EnableMagneticStoreWrites": bool,
919
+ },
920
+ )
921
+ _OptionalMagneticStoreWritePropertiesOutputTypeDef = TypedDict(
922
+ "_OptionalMagneticStoreWritePropertiesOutputTypeDef",
923
+ {
924
+ "MagneticStoreRejectedDataLocation": MagneticStoreRejectedDataLocationOutputTypeDef,
925
+ },
926
+ total=False,
927
+ )
928
+
929
+
930
+ class MagneticStoreWritePropertiesOutputTypeDef(
931
+ _RequiredMagneticStoreWritePropertiesOutputTypeDef,
932
+ _OptionalMagneticStoreWritePropertiesOutputTypeDef,
933
+ ):
934
+ pass
935
+
936
+
659
937
  _RequiredMagneticStoreWritePropertiesTypeDef = TypedDict(
660
938
  "_RequiredMagneticStoreWritePropertiesTypeDef",
661
939
  {
@@ -700,6 +978,29 @@ class WriteRecordsRequestRequestTypeDef(
700
978
  pass
701
979
 
702
980
 
981
+ _RequiredDataModelOutputTypeDef = TypedDict(
982
+ "_RequiredDataModelOutputTypeDef",
983
+ {
984
+ "DimensionMappings": List[DimensionMappingOutputTypeDef],
985
+ },
986
+ )
987
+ _OptionalDataModelOutputTypeDef = TypedDict(
988
+ "_OptionalDataModelOutputTypeDef",
989
+ {
990
+ "TimeColumn": str,
991
+ "TimeUnit": TimeUnitType,
992
+ "MultiMeasureMappings": MultiMeasureMappingsOutputTypeDef,
993
+ "MixedMeasureMappings": List[MixedMeasureMappingOutputTypeDef],
994
+ "MeasureNameColumn": str,
995
+ },
996
+ total=False,
997
+ )
998
+
999
+
1000
+ class DataModelOutputTypeDef(_RequiredDataModelOutputTypeDef, _OptionalDataModelOutputTypeDef):
1001
+ pass
1002
+
1003
+
703
1004
  _RequiredDataModelTypeDef = TypedDict(
704
1005
  "_RequiredDataModelTypeDef",
705
1006
  {
@@ -723,6 +1024,22 @@ class DataModelTypeDef(_RequiredDataModelTypeDef, _OptionalDataModelTypeDef):
723
1024
  pass
724
1025
 
725
1026
 
1027
+ TableTypeDef = TypedDict(
1028
+ "TableTypeDef",
1029
+ {
1030
+ "Arn": str,
1031
+ "TableName": str,
1032
+ "DatabaseName": str,
1033
+ "TableStatus": TableStatusType,
1034
+ "RetentionProperties": RetentionPropertiesOutputTypeDef,
1035
+ "CreationTime": datetime,
1036
+ "LastUpdatedTime": datetime,
1037
+ "MagneticStoreWriteProperties": MagneticStoreWritePropertiesOutputTypeDef,
1038
+ "Schema": SchemaOutputTypeDef,
1039
+ },
1040
+ total=False,
1041
+ )
1042
+
726
1043
  _RequiredCreateTableRequestRequestTypeDef = TypedDict(
727
1044
  "_RequiredCreateTableRequestRequestTypeDef",
728
1045
  {
@@ -748,22 +1065,6 @@ class CreateTableRequestRequestTypeDef(
748
1065
  pass
749
1066
 
750
1067
 
751
- TableTypeDef = TypedDict(
752
- "TableTypeDef",
753
- {
754
- "Arn": str,
755
- "TableName": str,
756
- "DatabaseName": str,
757
- "TableStatus": TableStatusType,
758
- "RetentionProperties": RetentionPropertiesTypeDef,
759
- "CreationTime": datetime,
760
- "LastUpdatedTime": datetime,
761
- "MagneticStoreWriteProperties": MagneticStoreWritePropertiesTypeDef,
762
- "Schema": SchemaTypeDef,
763
- },
764
- total=False,
765
- )
766
-
767
1068
  _RequiredUpdateTableRequestRequestTypeDef = TypedDict(
768
1069
  "_RequiredUpdateTableRequestRequestTypeDef",
769
1070
  {
@@ -788,6 +1089,15 @@ class UpdateTableRequestRequestTypeDef(
788
1089
  pass
789
1090
 
790
1091
 
1092
+ DataModelConfigurationOutputTypeDef = TypedDict(
1093
+ "DataModelConfigurationOutputTypeDef",
1094
+ {
1095
+ "DataModel": DataModelOutputTypeDef,
1096
+ "DataModelS3Configuration": DataModelS3ConfigurationOutputTypeDef,
1097
+ },
1098
+ total=False,
1099
+ )
1100
+
791
1101
  DataModelConfigurationTypeDef = TypedDict(
792
1102
  "DataModelConfigurationTypeDef",
793
1103
  {
@@ -801,7 +1111,7 @@ CreateTableResponseTypeDef = TypedDict(
801
1111
  "CreateTableResponseTypeDef",
802
1112
  {
803
1113
  "Table": TableTypeDef,
804
- "ResponseMetadata": "ResponseMetadataTypeDef",
1114
+ "ResponseMetadata": ResponseMetadataTypeDef,
805
1115
  },
806
1116
  )
807
1117
 
@@ -809,7 +1119,7 @@ DescribeTableResponseTypeDef = TypedDict(
809
1119
  "DescribeTableResponseTypeDef",
810
1120
  {
811
1121
  "Table": TableTypeDef,
812
- "ResponseMetadata": "ResponseMetadataTypeDef",
1122
+ "ResponseMetadata": ResponseMetadataTypeDef,
813
1123
  },
814
1124
  )
815
1125
 
@@ -818,7 +1128,7 @@ ListTablesResponseTypeDef = TypedDict(
818
1128
  {
819
1129
  "Tables": List[TableTypeDef],
820
1130
  "NextToken": str,
821
- "ResponseMetadata": "ResponseMetadataTypeDef",
1131
+ "ResponseMetadata": ResponseMetadataTypeDef,
822
1132
  },
823
1133
  )
824
1134
 
@@ -826,7 +1136,7 @@ UpdateTableResponseTypeDef = TypedDict(
826
1136
  "UpdateTableResponseTypeDef",
827
1137
  {
828
1138
  "Table": TableTypeDef,
829
- "ResponseMetadata": "ResponseMetadataTypeDef",
1139
+ "ResponseMetadata": ResponseMetadataTypeDef,
830
1140
  },
831
1141
  )
832
1142
 
@@ -835,10 +1145,10 @@ BatchLoadTaskDescriptionTypeDef = TypedDict(
835
1145
  {
836
1146
  "TaskId": str,
837
1147
  "ErrorMessage": str,
838
- "DataSourceConfiguration": DataSourceConfigurationTypeDef,
1148
+ "DataSourceConfiguration": DataSourceConfigurationOutputTypeDef,
839
1149
  "ProgressReport": BatchLoadProgressReportTypeDef,
840
- "ReportConfiguration": ReportConfigurationTypeDef,
841
- "DataModelConfiguration": DataModelConfigurationTypeDef,
1150
+ "ReportConfiguration": ReportConfigurationOutputTypeDef,
1151
+ "DataModelConfiguration": DataModelConfigurationOutputTypeDef,
842
1152
  "TargetDatabaseName": str,
843
1153
  "TargetTableName": str,
844
1154
  "TaskStatus": BatchLoadStatusType,
@@ -881,6 +1191,6 @@ DescribeBatchLoadTaskResponseTypeDef = TypedDict(
881
1191
  "DescribeBatchLoadTaskResponseTypeDef",
882
1192
  {
883
1193
  "BatchLoadTaskDescription": BatchLoadTaskDescriptionTypeDef,
884
- "ResponseMetadata": "ResponseMetadataTypeDef",
1194
+ "ResponseMetadata": ResponseMetadataTypeDef,
885
1195
  },
886
1196
  )