mypy-boto3-timestream-write 1.34.0__py3-none-any.whl → 1.35.93__py3-none-any.whl
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Potentially problematic release.
This version of mypy-boto3-timestream-write might be problematic. Click here for more details.
- mypy_boto3_timestream_write/__init__.py +2 -0
- mypy_boto3_timestream_write/__init__.pyi +2 -0
- mypy_boto3_timestream_write/__main__.py +13 -9
- mypy_boto3_timestream_write/client.py +111 -119
- mypy_boto3_timestream_write/client.pyi +111 -119
- mypy_boto3_timestream_write/literals.py +46 -12
- mypy_boto3_timestream_write/literals.pyi +46 -12
- mypy_boto3_timestream_write/type_defs.py +479 -544
- mypy_boto3_timestream_write/type_defs.pyi +408 -544
- mypy_boto3_timestream_write/version.py +3 -1
- {mypy_boto3_timestream_write-1.34.0.dist-info → mypy_boto3_timestream_write-1.35.93.dist-info}/LICENSE +1 -1
- {mypy_boto3_timestream_write-1.34.0.dist-info → mypy_boto3_timestream_write-1.35.93.dist-info}/METADATA +82 -28
- mypy_boto3_timestream_write-1.35.93.dist-info/RECORD +16 -0
- {mypy_boto3_timestream_write-1.34.0.dist-info → mypy_boto3_timestream_write-1.35.93.dist-info}/WHEEL +1 -1
- mypy_boto3_timestream_write-1.34.0.dist-info/RECORD +0 -16
- {mypy_boto3_timestream_write-1.34.0.dist-info → mypy_boto3_timestream_write-1.35.93.dist-info}/top_level.txt +0 -0
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
"""
|
|
2
2
|
Type annotations for timestream-write service type definitions.
|
|
3
3
|
|
|
4
|
-
[
|
|
4
|
+
[Documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_timestream_write/type_defs/)
|
|
5
5
|
|
|
6
6
|
Usage::
|
|
7
7
|
|
|
@@ -10,11 +10,15 @@ Usage::
|
|
|
10
10
|
|
|
11
11
|
data: BatchLoadProgressReportTypeDef = ...
|
|
12
12
|
```
|
|
13
|
+
|
|
14
|
+
Copyright 2025 Vlad Emelianov
|
|
13
15
|
"""
|
|
14
16
|
|
|
17
|
+
from __future__ import annotations
|
|
18
|
+
|
|
15
19
|
import sys
|
|
16
20
|
from datetime import datetime
|
|
17
|
-
from typing import
|
|
21
|
+
from typing import Union
|
|
18
22
|
|
|
19
23
|
from .literals import (
|
|
20
24
|
BatchLoadStatusType,
|
|
@@ -27,260 +31,223 @@ from .literals import (
|
|
|
27
31
|
TimeUnitType,
|
|
28
32
|
)
|
|
29
33
|
|
|
30
|
-
if sys.version_info >= (3,
|
|
31
|
-
from
|
|
32
|
-
|
|
33
|
-
from
|
|
34
|
-
if sys.version_info >= (3, 12):
|
|
35
|
-
from typing import NotRequired
|
|
34
|
+
if sys.version_info >= (3, 9):
|
|
35
|
+
from builtins import dict as Dict
|
|
36
|
+
from builtins import list as List
|
|
37
|
+
from collections.abc import Sequence
|
|
36
38
|
else:
|
|
37
|
-
from
|
|
39
|
+
from typing import Dict, List, Sequence
|
|
38
40
|
if sys.version_info >= (3, 12):
|
|
39
|
-
from typing import TypedDict
|
|
41
|
+
from typing import Literal, NotRequired, TypedDict
|
|
40
42
|
else:
|
|
41
|
-
from typing_extensions import TypedDict
|
|
43
|
+
from typing_extensions import Literal, NotRequired, TypedDict
|
|
42
44
|
|
|
43
45
|
|
|
44
46
|
__all__ = (
|
|
45
47
|
"BatchLoadProgressReportTypeDef",
|
|
48
|
+
"BatchLoadTaskDescriptionTypeDef",
|
|
46
49
|
"BatchLoadTaskTypeDef",
|
|
47
|
-
"
|
|
48
|
-
"
|
|
49
|
-
"
|
|
50
|
-
"
|
|
50
|
+
"CreateBatchLoadTaskRequestRequestTypeDef",
|
|
51
|
+
"CreateBatchLoadTaskResponseTypeDef",
|
|
52
|
+
"CreateDatabaseRequestRequestTypeDef",
|
|
53
|
+
"CreateDatabaseResponseTypeDef",
|
|
54
|
+
"CreateTableRequestRequestTypeDef",
|
|
55
|
+
"CreateTableResponseTypeDef",
|
|
51
56
|
"CsvConfigurationTypeDef",
|
|
57
|
+
"DataModelConfigurationOutputTypeDef",
|
|
58
|
+
"DataModelConfigurationTypeDef",
|
|
59
|
+
"DataModelOutputTypeDef",
|
|
52
60
|
"DataModelS3ConfigurationTypeDef",
|
|
53
|
-
"
|
|
61
|
+
"DataModelTypeDef",
|
|
62
|
+
"DataModelUnionTypeDef",
|
|
63
|
+
"DataSourceConfigurationTypeDef",
|
|
54
64
|
"DataSourceS3ConfigurationTypeDef",
|
|
65
|
+
"DatabaseTypeDef",
|
|
55
66
|
"DeleteDatabaseRequestRequestTypeDef",
|
|
56
67
|
"DeleteTableRequestRequestTypeDef",
|
|
57
68
|
"DescribeBatchLoadTaskRequestRequestTypeDef",
|
|
69
|
+
"DescribeBatchLoadTaskResponseTypeDef",
|
|
58
70
|
"DescribeDatabaseRequestRequestTypeDef",
|
|
59
|
-
"
|
|
71
|
+
"DescribeDatabaseResponseTypeDef",
|
|
72
|
+
"DescribeEndpointsResponseTypeDef",
|
|
60
73
|
"DescribeTableRequestRequestTypeDef",
|
|
74
|
+
"DescribeTableResponseTypeDef",
|
|
75
|
+
"DimensionMappingTypeDef",
|
|
61
76
|
"DimensionTypeDef",
|
|
77
|
+
"EmptyResponseMetadataTypeDef",
|
|
78
|
+
"EndpointTypeDef",
|
|
62
79
|
"ListBatchLoadTasksRequestRequestTypeDef",
|
|
80
|
+
"ListBatchLoadTasksResponseTypeDef",
|
|
63
81
|
"ListDatabasesRequestRequestTypeDef",
|
|
82
|
+
"ListDatabasesResponseTypeDef",
|
|
64
83
|
"ListTablesRequestRequestTypeDef",
|
|
84
|
+
"ListTablesResponseTypeDef",
|
|
65
85
|
"ListTagsForResourceRequestRequestTypeDef",
|
|
66
|
-
"
|
|
86
|
+
"ListTagsForResourceResponseTypeDef",
|
|
87
|
+
"MagneticStoreRejectedDataLocationTypeDef",
|
|
88
|
+
"MagneticStoreWritePropertiesTypeDef",
|
|
67
89
|
"MeasureValueTypeDef",
|
|
90
|
+
"MixedMeasureMappingOutputTypeDef",
|
|
91
|
+
"MixedMeasureMappingTypeDef",
|
|
92
|
+
"MixedMeasureMappingUnionTypeDef",
|
|
68
93
|
"MultiMeasureAttributeMappingTypeDef",
|
|
94
|
+
"MultiMeasureMappingsOutputTypeDef",
|
|
95
|
+
"MultiMeasureMappingsTypeDef",
|
|
96
|
+
"MultiMeasureMappingsUnionTypeDef",
|
|
69
97
|
"PartitionKeyTypeDef",
|
|
98
|
+
"RecordTypeDef",
|
|
70
99
|
"RecordsIngestedTypeDef",
|
|
100
|
+
"ReportConfigurationTypeDef",
|
|
71
101
|
"ReportS3ConfigurationTypeDef",
|
|
102
|
+
"ResponseMetadataTypeDef",
|
|
72
103
|
"ResumeBatchLoadTaskRequestRequestTypeDef",
|
|
104
|
+
"RetentionPropertiesTypeDef",
|
|
105
|
+
"S3ConfigurationTypeDef",
|
|
106
|
+
"SchemaOutputTypeDef",
|
|
107
|
+
"SchemaTypeDef",
|
|
108
|
+
"TableTypeDef",
|
|
109
|
+
"TagResourceRequestRequestTypeDef",
|
|
110
|
+
"TagTypeDef",
|
|
73
111
|
"UntagResourceRequestRequestTypeDef",
|
|
74
112
|
"UpdateDatabaseRequestRequestTypeDef",
|
|
75
|
-
"CreateBatchLoadTaskResponseTypeDef",
|
|
76
|
-
"EmptyResponseMetadataTypeDef",
|
|
77
|
-
"ListBatchLoadTasksResponseTypeDef",
|
|
78
|
-
"CreateDatabaseRequestRequestTypeDef",
|
|
79
|
-
"ListTagsForResourceResponseTypeDef",
|
|
80
|
-
"TagResourceRequestRequestTypeDef",
|
|
81
|
-
"CreateDatabaseResponseTypeDef",
|
|
82
|
-
"DescribeDatabaseResponseTypeDef",
|
|
83
|
-
"ListDatabasesResponseTypeDef",
|
|
84
113
|
"UpdateDatabaseResponseTypeDef",
|
|
85
|
-
"DataSourceConfigurationTypeDef",
|
|
86
|
-
"DescribeEndpointsResponseTypeDef",
|
|
87
|
-
"MagneticStoreRejectedDataLocationTypeDef",
|
|
88
|
-
"RecordTypeDef",
|
|
89
|
-
"MixedMeasureMappingTypeDef",
|
|
90
|
-
"MultiMeasureMappingsTypeDef",
|
|
91
|
-
"SchemaTypeDef",
|
|
92
|
-
"WriteRecordsResponseTypeDef",
|
|
93
|
-
"ReportConfigurationTypeDef",
|
|
94
|
-
"MagneticStoreWritePropertiesTypeDef",
|
|
95
|
-
"WriteRecordsRequestRequestTypeDef",
|
|
96
|
-
"DataModelTypeDef",
|
|
97
|
-
"CreateTableRequestRequestTypeDef",
|
|
98
|
-
"TableTypeDef",
|
|
99
114
|
"UpdateTableRequestRequestTypeDef",
|
|
100
|
-
"DataModelConfigurationTypeDef",
|
|
101
|
-
"CreateTableResponseTypeDef",
|
|
102
|
-
"DescribeTableResponseTypeDef",
|
|
103
|
-
"ListTablesResponseTypeDef",
|
|
104
115
|
"UpdateTableResponseTypeDef",
|
|
105
|
-
"
|
|
106
|
-
"
|
|
107
|
-
"DescribeBatchLoadTaskResponseTypeDef",
|
|
116
|
+
"WriteRecordsRequestRequestTypeDef",
|
|
117
|
+
"WriteRecordsResponseTypeDef",
|
|
108
118
|
)
|
|
109
119
|
|
|
110
|
-
|
|
111
|
-
|
|
112
|
-
|
|
113
|
-
|
|
114
|
-
|
|
115
|
-
|
|
116
|
-
|
|
117
|
-
|
|
118
|
-
|
|
119
|
-
|
|
120
|
-
)
|
|
121
|
-
|
|
122
|
-
|
|
123
|
-
|
|
124
|
-
|
|
125
|
-
|
|
126
|
-
|
|
127
|
-
|
|
128
|
-
|
|
129
|
-
|
|
130
|
-
|
|
131
|
-
|
|
132
|
-
|
|
133
|
-
|
|
134
|
-
|
|
135
|
-
|
|
136
|
-
|
|
137
|
-
|
|
138
|
-
|
|
139
|
-
|
|
140
|
-
|
|
141
|
-
|
|
142
|
-
|
|
143
|
-
|
|
144
|
-
|
|
145
|
-
|
|
146
|
-
|
|
147
|
-
|
|
148
|
-
|
|
149
|
-
|
|
150
|
-
|
|
151
|
-
|
|
152
|
-
|
|
153
|
-
|
|
154
|
-
|
|
155
|
-
|
|
156
|
-
|
|
157
|
-
|
|
158
|
-
|
|
159
|
-
|
|
160
|
-
|
|
161
|
-
|
|
162
|
-
|
|
163
|
-
|
|
164
|
-
|
|
165
|
-
|
|
166
|
-
|
|
167
|
-
|
|
168
|
-
|
|
169
|
-
|
|
170
|
-
|
|
171
|
-
|
|
172
|
-
|
|
173
|
-
|
|
174
|
-
|
|
175
|
-
|
|
176
|
-
|
|
177
|
-
|
|
178
|
-
|
|
179
|
-
|
|
180
|
-
|
|
181
|
-
|
|
182
|
-
|
|
183
|
-
|
|
184
|
-
)
|
|
185
|
-
|
|
186
|
-
|
|
187
|
-
|
|
188
|
-
|
|
189
|
-
|
|
190
|
-
|
|
191
|
-
|
|
192
|
-
|
|
193
|
-
|
|
194
|
-
|
|
195
|
-
|
|
196
|
-
|
|
197
|
-
|
|
198
|
-
|
|
199
|
-
|
|
200
|
-
|
|
201
|
-
|
|
202
|
-
|
|
203
|
-
|
|
204
|
-
|
|
205
|
-
|
|
206
|
-
|
|
207
|
-
|
|
208
|
-
|
|
209
|
-
|
|
210
|
-
|
|
211
|
-
|
|
212
|
-
|
|
213
|
-
|
|
214
|
-
|
|
215
|
-
|
|
216
|
-
|
|
217
|
-
|
|
218
|
-
|
|
219
|
-
|
|
220
|
-
|
|
221
|
-
|
|
222
|
-
|
|
223
|
-
|
|
224
|
-
|
|
225
|
-
|
|
226
|
-
|
|
227
|
-
|
|
228
|
-
|
|
229
|
-
|
|
230
|
-
)
|
|
231
|
-
|
|
232
|
-
|
|
233
|
-
|
|
234
|
-
|
|
235
|
-
|
|
236
|
-
|
|
237
|
-
|
|
238
|
-
|
|
239
|
-
|
|
240
|
-
|
|
241
|
-
"Name": str,
|
|
242
|
-
"Value": str,
|
|
243
|
-
"DimensionValueType": NotRequired[Literal["VARCHAR"]],
|
|
244
|
-
},
|
|
245
|
-
)
|
|
246
|
-
ListBatchLoadTasksRequestRequestTypeDef = TypedDict(
|
|
247
|
-
"ListBatchLoadTasksRequestRequestTypeDef",
|
|
248
|
-
{
|
|
249
|
-
"NextToken": NotRequired[str],
|
|
250
|
-
"MaxResults": NotRequired[int],
|
|
251
|
-
"TaskStatus": NotRequired[BatchLoadStatusType],
|
|
252
|
-
},
|
|
253
|
-
)
|
|
254
|
-
ListDatabasesRequestRequestTypeDef = TypedDict(
|
|
255
|
-
"ListDatabasesRequestRequestTypeDef",
|
|
256
|
-
{
|
|
257
|
-
"NextToken": NotRequired[str],
|
|
258
|
-
"MaxResults": NotRequired[int],
|
|
259
|
-
},
|
|
260
|
-
)
|
|
261
|
-
ListTablesRequestRequestTypeDef = TypedDict(
|
|
262
|
-
"ListTablesRequestRequestTypeDef",
|
|
263
|
-
{
|
|
264
|
-
"DatabaseName": NotRequired[str],
|
|
265
|
-
"NextToken": NotRequired[str],
|
|
266
|
-
"MaxResults": NotRequired[int],
|
|
267
|
-
},
|
|
268
|
-
)
|
|
269
|
-
ListTagsForResourceRequestRequestTypeDef = TypedDict(
|
|
270
|
-
"ListTagsForResourceRequestRequestTypeDef",
|
|
271
|
-
{
|
|
272
|
-
"ResourceARN": str,
|
|
273
|
-
},
|
|
274
|
-
)
|
|
275
|
-
S3ConfigurationTypeDef = TypedDict(
|
|
276
|
-
"S3ConfigurationTypeDef",
|
|
277
|
-
{
|
|
278
|
-
"BucketName": NotRequired[str],
|
|
279
|
-
"ObjectKeyPrefix": NotRequired[str],
|
|
280
|
-
"EncryptionOption": NotRequired[S3EncryptionOptionType],
|
|
281
|
-
"KmsKeyId": NotRequired[str],
|
|
282
|
-
},
|
|
283
|
-
)
|
|
120
|
+
|
|
121
|
+
class BatchLoadProgressReportTypeDef(TypedDict):
|
|
122
|
+
RecordsProcessed: NotRequired[int]
|
|
123
|
+
RecordsIngested: NotRequired[int]
|
|
124
|
+
ParseFailures: NotRequired[int]
|
|
125
|
+
RecordIngestionFailures: NotRequired[int]
|
|
126
|
+
FileFailures: NotRequired[int]
|
|
127
|
+
BytesMetered: NotRequired[int]
|
|
128
|
+
|
|
129
|
+
|
|
130
|
+
class BatchLoadTaskTypeDef(TypedDict):
|
|
131
|
+
TaskId: NotRequired[str]
|
|
132
|
+
TaskStatus: NotRequired[BatchLoadStatusType]
|
|
133
|
+
DatabaseName: NotRequired[str]
|
|
134
|
+
TableName: NotRequired[str]
|
|
135
|
+
CreationTime: NotRequired[datetime]
|
|
136
|
+
LastUpdatedTime: NotRequired[datetime]
|
|
137
|
+
ResumableUntil: NotRequired[datetime]
|
|
138
|
+
|
|
139
|
+
|
|
140
|
+
class ResponseMetadataTypeDef(TypedDict):
|
|
141
|
+
RequestId: str
|
|
142
|
+
HTTPStatusCode: int
|
|
143
|
+
HTTPHeaders: Dict[str, str]
|
|
144
|
+
RetryAttempts: int
|
|
145
|
+
HostId: NotRequired[str]
|
|
146
|
+
|
|
147
|
+
|
|
148
|
+
class TagTypeDef(TypedDict):
|
|
149
|
+
Key: str
|
|
150
|
+
Value: str
|
|
151
|
+
|
|
152
|
+
|
|
153
|
+
class DatabaseTypeDef(TypedDict):
|
|
154
|
+
Arn: NotRequired[str]
|
|
155
|
+
DatabaseName: NotRequired[str]
|
|
156
|
+
TableCount: NotRequired[int]
|
|
157
|
+
KmsKeyId: NotRequired[str]
|
|
158
|
+
CreationTime: NotRequired[datetime]
|
|
159
|
+
LastUpdatedTime: NotRequired[datetime]
|
|
160
|
+
|
|
161
|
+
|
|
162
|
+
class RetentionPropertiesTypeDef(TypedDict):
|
|
163
|
+
MemoryStoreRetentionPeriodInHours: int
|
|
164
|
+
MagneticStoreRetentionPeriodInDays: int
|
|
165
|
+
|
|
166
|
+
|
|
167
|
+
class CsvConfigurationTypeDef(TypedDict):
|
|
168
|
+
ColumnSeparator: NotRequired[str]
|
|
169
|
+
EscapeChar: NotRequired[str]
|
|
170
|
+
QuoteChar: NotRequired[str]
|
|
171
|
+
NullValue: NotRequired[str]
|
|
172
|
+
TrimWhiteSpace: NotRequired[bool]
|
|
173
|
+
|
|
174
|
+
|
|
175
|
+
class DataModelS3ConfigurationTypeDef(TypedDict):
|
|
176
|
+
BucketName: NotRequired[str]
|
|
177
|
+
ObjectKey: NotRequired[str]
|
|
178
|
+
|
|
179
|
+
|
|
180
|
+
class DimensionMappingTypeDef(TypedDict):
|
|
181
|
+
SourceColumn: NotRequired[str]
|
|
182
|
+
DestinationColumn: NotRequired[str]
|
|
183
|
+
|
|
184
|
+
|
|
185
|
+
class DataSourceS3ConfigurationTypeDef(TypedDict):
|
|
186
|
+
BucketName: str
|
|
187
|
+
ObjectKeyPrefix: NotRequired[str]
|
|
188
|
+
|
|
189
|
+
|
|
190
|
+
class DeleteDatabaseRequestRequestTypeDef(TypedDict):
|
|
191
|
+
DatabaseName: str
|
|
192
|
+
|
|
193
|
+
|
|
194
|
+
class DeleteTableRequestRequestTypeDef(TypedDict):
|
|
195
|
+
DatabaseName: str
|
|
196
|
+
TableName: str
|
|
197
|
+
|
|
198
|
+
|
|
199
|
+
class DescribeBatchLoadTaskRequestRequestTypeDef(TypedDict):
|
|
200
|
+
TaskId: str
|
|
201
|
+
|
|
202
|
+
|
|
203
|
+
class DescribeDatabaseRequestRequestTypeDef(TypedDict):
|
|
204
|
+
DatabaseName: str
|
|
205
|
+
|
|
206
|
+
|
|
207
|
+
class EndpointTypeDef(TypedDict):
|
|
208
|
+
Address: str
|
|
209
|
+
CachePeriodInMinutes: int
|
|
210
|
+
|
|
211
|
+
|
|
212
|
+
class DescribeTableRequestRequestTypeDef(TypedDict):
|
|
213
|
+
DatabaseName: str
|
|
214
|
+
TableName: str
|
|
215
|
+
|
|
216
|
+
|
|
217
|
+
class DimensionTypeDef(TypedDict):
|
|
218
|
+
Name: str
|
|
219
|
+
Value: str
|
|
220
|
+
DimensionValueType: NotRequired[Literal["VARCHAR"]]
|
|
221
|
+
|
|
222
|
+
|
|
223
|
+
class ListBatchLoadTasksRequestRequestTypeDef(TypedDict):
|
|
224
|
+
NextToken: NotRequired[str]
|
|
225
|
+
MaxResults: NotRequired[int]
|
|
226
|
+
TaskStatus: NotRequired[BatchLoadStatusType]
|
|
227
|
+
|
|
228
|
+
|
|
229
|
+
class ListDatabasesRequestRequestTypeDef(TypedDict):
|
|
230
|
+
NextToken: NotRequired[str]
|
|
231
|
+
MaxResults: NotRequired[int]
|
|
232
|
+
|
|
233
|
+
|
|
234
|
+
class ListTablesRequestRequestTypeDef(TypedDict):
|
|
235
|
+
DatabaseName: NotRequired[str]
|
|
236
|
+
NextToken: NotRequired[str]
|
|
237
|
+
MaxResults: NotRequired[int]
|
|
238
|
+
|
|
239
|
+
|
|
240
|
+
class ListTagsForResourceRequestRequestTypeDef(TypedDict):
|
|
241
|
+
ResourceARN: str
|
|
242
|
+
|
|
243
|
+
|
|
244
|
+
class S3ConfigurationTypeDef(TypedDict):
|
|
245
|
+
BucketName: NotRequired[str]
|
|
246
|
+
ObjectKeyPrefix: NotRequired[str]
|
|
247
|
+
EncryptionOption: NotRequired[S3EncryptionOptionType]
|
|
248
|
+
KmsKeyId: NotRequired[str]
|
|
249
|
+
|
|
250
|
+
|
|
284
251
|
MeasureValueTypeDef = TypedDict(
|
|
285
252
|
"MeasureValueTypeDef",
|
|
286
253
|
{
|
|
@@ -289,14 +256,14 @@ MeasureValueTypeDef = TypedDict(
|
|
|
289
256
|
"Type": MeasureValueTypeType,
|
|
290
257
|
},
|
|
291
258
|
)
|
|
292
|
-
|
|
293
|
-
|
|
294
|
-
|
|
295
|
-
|
|
296
|
-
|
|
297
|
-
|
|
298
|
-
|
|
299
|
-
|
|
259
|
+
|
|
260
|
+
|
|
261
|
+
class MultiMeasureAttributeMappingTypeDef(TypedDict):
|
|
262
|
+
SourceColumn: str
|
|
263
|
+
TargetMultiMeasureAttributeName: NotRequired[str]
|
|
264
|
+
MeasureValueType: NotRequired[ScalarMeasureValueTypeType]
|
|
265
|
+
|
|
266
|
+
|
|
300
267
|
PartitionKeyTypeDef = TypedDict(
|
|
301
268
|
"PartitionKeyTypeDef",
|
|
302
269
|
{
|
|
@@ -305,317 +272,285 @@ PartitionKeyTypeDef = TypedDict(
|
|
|
305
272
|
"EnforcementInRecord": NotRequired[PartitionKeyEnforcementLevelType],
|
|
306
273
|
},
|
|
307
274
|
)
|
|
308
|
-
|
|
309
|
-
|
|
310
|
-
|
|
311
|
-
|
|
312
|
-
|
|
313
|
-
|
|
314
|
-
|
|
315
|
-
|
|
316
|
-
ReportS3ConfigurationTypeDef
|
|
317
|
-
|
|
318
|
-
|
|
319
|
-
|
|
320
|
-
|
|
321
|
-
|
|
322
|
-
|
|
323
|
-
|
|
324
|
-
|
|
325
|
-
|
|
326
|
-
|
|
327
|
-
|
|
328
|
-
|
|
329
|
-
|
|
330
|
-
|
|
331
|
-
|
|
332
|
-
|
|
333
|
-
|
|
334
|
-
|
|
335
|
-
|
|
336
|
-
|
|
337
|
-
)
|
|
338
|
-
|
|
339
|
-
|
|
340
|
-
|
|
341
|
-
|
|
342
|
-
|
|
343
|
-
|
|
344
|
-
|
|
345
|
-
|
|
346
|
-
|
|
347
|
-
|
|
348
|
-
|
|
349
|
-
|
|
350
|
-
|
|
351
|
-
|
|
352
|
-
|
|
353
|
-
|
|
354
|
-
|
|
355
|
-
|
|
356
|
-
|
|
357
|
-
|
|
358
|
-
|
|
359
|
-
|
|
360
|
-
|
|
361
|
-
|
|
362
|
-
|
|
363
|
-
|
|
364
|
-
|
|
365
|
-
|
|
366
|
-
|
|
367
|
-
|
|
368
|
-
|
|
369
|
-
|
|
370
|
-
|
|
371
|
-
|
|
372
|
-
|
|
373
|
-
)
|
|
374
|
-
|
|
375
|
-
|
|
376
|
-
|
|
377
|
-
|
|
378
|
-
|
|
379
|
-
|
|
380
|
-
|
|
381
|
-
|
|
382
|
-
|
|
383
|
-
|
|
384
|
-
|
|
385
|
-
|
|
386
|
-
|
|
387
|
-
|
|
388
|
-
|
|
389
|
-
|
|
390
|
-
|
|
391
|
-
|
|
392
|
-
|
|
393
|
-
|
|
394
|
-
|
|
395
|
-
|
|
396
|
-
|
|
397
|
-
|
|
398
|
-
|
|
399
|
-
|
|
400
|
-
|
|
401
|
-
|
|
402
|
-
|
|
403
|
-
|
|
404
|
-
|
|
405
|
-
|
|
406
|
-
|
|
407
|
-
|
|
408
|
-
|
|
409
|
-
|
|
410
|
-
|
|
411
|
-
|
|
412
|
-
|
|
413
|
-
|
|
414
|
-
|
|
415
|
-
|
|
416
|
-
|
|
417
|
-
|
|
418
|
-
|
|
419
|
-
|
|
420
|
-
|
|
421
|
-
|
|
422
|
-
|
|
423
|
-
|
|
424
|
-
|
|
425
|
-
|
|
426
|
-
|
|
427
|
-
|
|
428
|
-
|
|
429
|
-
|
|
430
|
-
|
|
431
|
-
)
|
|
432
|
-
|
|
433
|
-
|
|
434
|
-
|
|
435
|
-
|
|
436
|
-
|
|
437
|
-
|
|
438
|
-
|
|
439
|
-
|
|
440
|
-
|
|
441
|
-
|
|
442
|
-
|
|
443
|
-
|
|
444
|
-
|
|
445
|
-
|
|
446
|
-
|
|
447
|
-
|
|
448
|
-
|
|
449
|
-
|
|
450
|
-
|
|
451
|
-
|
|
452
|
-
|
|
453
|
-
|
|
454
|
-
|
|
455
|
-
|
|
456
|
-
|
|
457
|
-
|
|
458
|
-
|
|
459
|
-
|
|
460
|
-
|
|
461
|
-
|
|
462
|
-
|
|
463
|
-
|
|
464
|
-
|
|
465
|
-
|
|
466
|
-
|
|
467
|
-
|
|
468
|
-
|
|
469
|
-
|
|
470
|
-
|
|
471
|
-
|
|
472
|
-
|
|
473
|
-
|
|
474
|
-
|
|
475
|
-
|
|
476
|
-
|
|
477
|
-
|
|
478
|
-
|
|
479
|
-
|
|
480
|
-
|
|
481
|
-
|
|
482
|
-
|
|
483
|
-
|
|
484
|
-
|
|
485
|
-
|
|
486
|
-
|
|
487
|
-
|
|
488
|
-
|
|
489
|
-
|
|
490
|
-
|
|
491
|
-
|
|
492
|
-
|
|
493
|
-
|
|
494
|
-
|
|
495
|
-
|
|
496
|
-
|
|
497
|
-
|
|
498
|
-
|
|
499
|
-
|
|
500
|
-
|
|
501
|
-
|
|
502
|
-
|
|
503
|
-
|
|
504
|
-
|
|
505
|
-
|
|
506
|
-
|
|
507
|
-
|
|
508
|
-
|
|
509
|
-
|
|
510
|
-
|
|
511
|
-
|
|
512
|
-
|
|
513
|
-
|
|
514
|
-
|
|
515
|
-
|
|
516
|
-
|
|
517
|
-
|
|
518
|
-
|
|
519
|
-
|
|
520
|
-
|
|
521
|
-
|
|
522
|
-
|
|
523
|
-
|
|
524
|
-
|
|
525
|
-
|
|
526
|
-
|
|
527
|
-
|
|
528
|
-
|
|
529
|
-
|
|
530
|
-
|
|
531
|
-
|
|
532
|
-
|
|
533
|
-
|
|
534
|
-
|
|
535
|
-
|
|
536
|
-
|
|
537
|
-
|
|
538
|
-
|
|
539
|
-
|
|
540
|
-
|
|
541
|
-
|
|
542
|
-
|
|
543
|
-
|
|
544
|
-
|
|
545
|
-
|
|
546
|
-
|
|
547
|
-
|
|
548
|
-
)
|
|
549
|
-
|
|
550
|
-
|
|
551
|
-
|
|
552
|
-
|
|
553
|
-
|
|
554
|
-
|
|
555
|
-
|
|
556
|
-
|
|
557
|
-
|
|
558
|
-
|
|
559
|
-
|
|
560
|
-
|
|
561
|
-
|
|
562
|
-
|
|
563
|
-
|
|
564
|
-
|
|
565
|
-
|
|
566
|
-
|
|
567
|
-
|
|
568
|
-
|
|
569
|
-
|
|
570
|
-
|
|
571
|
-
|
|
572
|
-
|
|
573
|
-
|
|
574
|
-
|
|
575
|
-
|
|
576
|
-
|
|
577
|
-
)
|
|
578
|
-
|
|
579
|
-
|
|
580
|
-
|
|
581
|
-
|
|
582
|
-
|
|
583
|
-
|
|
584
|
-
|
|
585
|
-
|
|
586
|
-
|
|
587
|
-
|
|
588
|
-
|
|
589
|
-
|
|
590
|
-
"DataSourceConfiguration": NotRequired[DataSourceConfigurationTypeDef],
|
|
591
|
-
"ProgressReport": NotRequired[BatchLoadProgressReportTypeDef],
|
|
592
|
-
"ReportConfiguration": NotRequired[ReportConfigurationTypeDef],
|
|
593
|
-
"DataModelConfiguration": NotRequired[DataModelConfigurationTypeDef],
|
|
594
|
-
"TargetDatabaseName": NotRequired[str],
|
|
595
|
-
"TargetTableName": NotRequired[str],
|
|
596
|
-
"TaskStatus": NotRequired[BatchLoadStatusType],
|
|
597
|
-
"RecordVersion": NotRequired[int],
|
|
598
|
-
"CreationTime": NotRequired[datetime],
|
|
599
|
-
"LastUpdatedTime": NotRequired[datetime],
|
|
600
|
-
"ResumableUntil": NotRequired[datetime],
|
|
601
|
-
},
|
|
602
|
-
)
|
|
603
|
-
CreateBatchLoadTaskRequestRequestTypeDef = TypedDict(
|
|
604
|
-
"CreateBatchLoadTaskRequestRequestTypeDef",
|
|
605
|
-
{
|
|
606
|
-
"DataSourceConfiguration": DataSourceConfigurationTypeDef,
|
|
607
|
-
"ReportConfiguration": ReportConfigurationTypeDef,
|
|
608
|
-
"TargetDatabaseName": str,
|
|
609
|
-
"TargetTableName": str,
|
|
610
|
-
"ClientToken": NotRequired[str],
|
|
611
|
-
"DataModelConfiguration": NotRequired[DataModelConfigurationTypeDef],
|
|
612
|
-
"RecordVersion": NotRequired[int],
|
|
613
|
-
},
|
|
614
|
-
)
|
|
615
|
-
DescribeBatchLoadTaskResponseTypeDef = TypedDict(
|
|
616
|
-
"DescribeBatchLoadTaskResponseTypeDef",
|
|
617
|
-
{
|
|
618
|
-
"BatchLoadTaskDescription": BatchLoadTaskDescriptionTypeDef,
|
|
619
|
-
"ResponseMetadata": ResponseMetadataTypeDef,
|
|
620
|
-
},
|
|
621
|
-
)
|
|
275
|
+
|
|
276
|
+
|
|
277
|
+
class RecordsIngestedTypeDef(TypedDict):
|
|
278
|
+
Total: NotRequired[int]
|
|
279
|
+
MemoryStore: NotRequired[int]
|
|
280
|
+
MagneticStore: NotRequired[int]
|
|
281
|
+
|
|
282
|
+
|
|
283
|
+
class ReportS3ConfigurationTypeDef(TypedDict):
|
|
284
|
+
BucketName: str
|
|
285
|
+
ObjectKeyPrefix: NotRequired[str]
|
|
286
|
+
EncryptionOption: NotRequired[S3EncryptionOptionType]
|
|
287
|
+
KmsKeyId: NotRequired[str]
|
|
288
|
+
|
|
289
|
+
|
|
290
|
+
class ResumeBatchLoadTaskRequestRequestTypeDef(TypedDict):
|
|
291
|
+
TaskId: str
|
|
292
|
+
|
|
293
|
+
|
|
294
|
+
class UntagResourceRequestRequestTypeDef(TypedDict):
|
|
295
|
+
ResourceARN: str
|
|
296
|
+
TagKeys: Sequence[str]
|
|
297
|
+
|
|
298
|
+
|
|
299
|
+
class UpdateDatabaseRequestRequestTypeDef(TypedDict):
|
|
300
|
+
DatabaseName: str
|
|
301
|
+
KmsKeyId: str
|
|
302
|
+
|
|
303
|
+
|
|
304
|
+
class CreateBatchLoadTaskResponseTypeDef(TypedDict):
|
|
305
|
+
TaskId: str
|
|
306
|
+
ResponseMetadata: ResponseMetadataTypeDef
|
|
307
|
+
|
|
308
|
+
|
|
309
|
+
class EmptyResponseMetadataTypeDef(TypedDict):
|
|
310
|
+
ResponseMetadata: ResponseMetadataTypeDef
|
|
311
|
+
|
|
312
|
+
|
|
313
|
+
class ListBatchLoadTasksResponseTypeDef(TypedDict):
|
|
314
|
+
BatchLoadTasks: List[BatchLoadTaskTypeDef]
|
|
315
|
+
ResponseMetadata: ResponseMetadataTypeDef
|
|
316
|
+
NextToken: NotRequired[str]
|
|
317
|
+
|
|
318
|
+
|
|
319
|
+
class CreateDatabaseRequestRequestTypeDef(TypedDict):
|
|
320
|
+
DatabaseName: str
|
|
321
|
+
KmsKeyId: NotRequired[str]
|
|
322
|
+
Tags: NotRequired[Sequence[TagTypeDef]]
|
|
323
|
+
|
|
324
|
+
|
|
325
|
+
class ListTagsForResourceResponseTypeDef(TypedDict):
|
|
326
|
+
Tags: List[TagTypeDef]
|
|
327
|
+
ResponseMetadata: ResponseMetadataTypeDef
|
|
328
|
+
|
|
329
|
+
|
|
330
|
+
class TagResourceRequestRequestTypeDef(TypedDict):
|
|
331
|
+
ResourceARN: str
|
|
332
|
+
Tags: Sequence[TagTypeDef]
|
|
333
|
+
|
|
334
|
+
|
|
335
|
+
class CreateDatabaseResponseTypeDef(TypedDict):
|
|
336
|
+
Database: DatabaseTypeDef
|
|
337
|
+
ResponseMetadata: ResponseMetadataTypeDef
|
|
338
|
+
|
|
339
|
+
|
|
340
|
+
class DescribeDatabaseResponseTypeDef(TypedDict):
|
|
341
|
+
Database: DatabaseTypeDef
|
|
342
|
+
ResponseMetadata: ResponseMetadataTypeDef
|
|
343
|
+
|
|
344
|
+
|
|
345
|
+
class ListDatabasesResponseTypeDef(TypedDict):
|
|
346
|
+
Databases: List[DatabaseTypeDef]
|
|
347
|
+
ResponseMetadata: ResponseMetadataTypeDef
|
|
348
|
+
NextToken: NotRequired[str]
|
|
349
|
+
|
|
350
|
+
|
|
351
|
+
class UpdateDatabaseResponseTypeDef(TypedDict):
|
|
352
|
+
Database: DatabaseTypeDef
|
|
353
|
+
ResponseMetadata: ResponseMetadataTypeDef
|
|
354
|
+
|
|
355
|
+
|
|
356
|
+
class DataSourceConfigurationTypeDef(TypedDict):
|
|
357
|
+
DataSourceS3Configuration: DataSourceS3ConfigurationTypeDef
|
|
358
|
+
DataFormat: Literal["CSV"]
|
|
359
|
+
CsvConfiguration: NotRequired[CsvConfigurationTypeDef]
|
|
360
|
+
|
|
361
|
+
|
|
362
|
+
class DescribeEndpointsResponseTypeDef(TypedDict):
|
|
363
|
+
Endpoints: List[EndpointTypeDef]
|
|
364
|
+
ResponseMetadata: ResponseMetadataTypeDef
|
|
365
|
+
|
|
366
|
+
|
|
367
|
+
class MagneticStoreRejectedDataLocationTypeDef(TypedDict):
|
|
368
|
+
S3Configuration: NotRequired[S3ConfigurationTypeDef]
|
|
369
|
+
|
|
370
|
+
|
|
371
|
+
class RecordTypeDef(TypedDict):
|
|
372
|
+
Dimensions: NotRequired[Sequence[DimensionTypeDef]]
|
|
373
|
+
MeasureName: NotRequired[str]
|
|
374
|
+
MeasureValue: NotRequired[str]
|
|
375
|
+
MeasureValueType: NotRequired[MeasureValueTypeType]
|
|
376
|
+
Time: NotRequired[str]
|
|
377
|
+
TimeUnit: NotRequired[TimeUnitType]
|
|
378
|
+
Version: NotRequired[int]
|
|
379
|
+
MeasureValues: NotRequired[Sequence[MeasureValueTypeDef]]
|
|
380
|
+
|
|
381
|
+
|
|
382
|
+
class MixedMeasureMappingOutputTypeDef(TypedDict):
|
|
383
|
+
MeasureValueType: MeasureValueTypeType
|
|
384
|
+
MeasureName: NotRequired[str]
|
|
385
|
+
SourceColumn: NotRequired[str]
|
|
386
|
+
TargetMeasureName: NotRequired[str]
|
|
387
|
+
MultiMeasureAttributeMappings: NotRequired[List[MultiMeasureAttributeMappingTypeDef]]
|
|
388
|
+
|
|
389
|
+
|
|
390
|
+
class MixedMeasureMappingTypeDef(TypedDict):
|
|
391
|
+
MeasureValueType: MeasureValueTypeType
|
|
392
|
+
MeasureName: NotRequired[str]
|
|
393
|
+
SourceColumn: NotRequired[str]
|
|
394
|
+
TargetMeasureName: NotRequired[str]
|
|
395
|
+
MultiMeasureAttributeMappings: NotRequired[Sequence[MultiMeasureAttributeMappingTypeDef]]
|
|
396
|
+
|
|
397
|
+
|
|
398
|
+
class MultiMeasureMappingsOutputTypeDef(TypedDict):
|
|
399
|
+
MultiMeasureAttributeMappings: List[MultiMeasureAttributeMappingTypeDef]
|
|
400
|
+
TargetMultiMeasureName: NotRequired[str]
|
|
401
|
+
|
|
402
|
+
|
|
403
|
+
class MultiMeasureMappingsTypeDef(TypedDict):
|
|
404
|
+
MultiMeasureAttributeMappings: Sequence[MultiMeasureAttributeMappingTypeDef]
|
|
405
|
+
TargetMultiMeasureName: NotRequired[str]
|
|
406
|
+
|
|
407
|
+
|
|
408
|
+
class SchemaOutputTypeDef(TypedDict):
|
|
409
|
+
CompositePartitionKey: NotRequired[List[PartitionKeyTypeDef]]
|
|
410
|
+
|
|
411
|
+
|
|
412
|
+
class SchemaTypeDef(TypedDict):
|
|
413
|
+
CompositePartitionKey: NotRequired[Sequence[PartitionKeyTypeDef]]
|
|
414
|
+
|
|
415
|
+
|
|
416
|
+
class WriteRecordsResponseTypeDef(TypedDict):
|
|
417
|
+
RecordsIngested: RecordsIngestedTypeDef
|
|
418
|
+
ResponseMetadata: ResponseMetadataTypeDef
|
|
419
|
+
|
|
420
|
+
|
|
421
|
+
class ReportConfigurationTypeDef(TypedDict):
|
|
422
|
+
ReportS3Configuration: NotRequired[ReportS3ConfigurationTypeDef]
|
|
423
|
+
|
|
424
|
+
|
|
425
|
+
class MagneticStoreWritePropertiesTypeDef(TypedDict):
|
|
426
|
+
EnableMagneticStoreWrites: bool
|
|
427
|
+
MagneticStoreRejectedDataLocation: NotRequired[MagneticStoreRejectedDataLocationTypeDef]
|
|
428
|
+
|
|
429
|
+
|
|
430
|
+
class WriteRecordsRequestRequestTypeDef(TypedDict):
|
|
431
|
+
DatabaseName: str
|
|
432
|
+
TableName: str
|
|
433
|
+
Records: Sequence[RecordTypeDef]
|
|
434
|
+
CommonAttributes: NotRequired[RecordTypeDef]
|
|
435
|
+
|
|
436
|
+
|
|
437
|
+
MixedMeasureMappingUnionTypeDef = Union[
|
|
438
|
+
MixedMeasureMappingTypeDef, MixedMeasureMappingOutputTypeDef
|
|
439
|
+
]
|
|
440
|
+
|
|
441
|
+
|
|
442
|
+
class DataModelOutputTypeDef(TypedDict):
|
|
443
|
+
DimensionMappings: List[DimensionMappingTypeDef]
|
|
444
|
+
TimeColumn: NotRequired[str]
|
|
445
|
+
TimeUnit: NotRequired[TimeUnitType]
|
|
446
|
+
MultiMeasureMappings: NotRequired[MultiMeasureMappingsOutputTypeDef]
|
|
447
|
+
MixedMeasureMappings: NotRequired[List[MixedMeasureMappingOutputTypeDef]]
|
|
448
|
+
MeasureNameColumn: NotRequired[str]
|
|
449
|
+
|
|
450
|
+
|
|
451
|
+
MultiMeasureMappingsUnionTypeDef = Union[
|
|
452
|
+
MultiMeasureMappingsTypeDef, MultiMeasureMappingsOutputTypeDef
|
|
453
|
+
]
|
|
454
|
+
|
|
455
|
+
|
|
456
|
+
class CreateTableRequestRequestTypeDef(TypedDict):
|
|
457
|
+
DatabaseName: str
|
|
458
|
+
TableName: str
|
|
459
|
+
RetentionProperties: NotRequired[RetentionPropertiesTypeDef]
|
|
460
|
+
Tags: NotRequired[Sequence[TagTypeDef]]
|
|
461
|
+
MagneticStoreWriteProperties: NotRequired[MagneticStoreWritePropertiesTypeDef]
|
|
462
|
+
Schema: NotRequired[SchemaTypeDef]
|
|
463
|
+
|
|
464
|
+
|
|
465
|
+
class TableTypeDef(TypedDict):
|
|
466
|
+
Arn: NotRequired[str]
|
|
467
|
+
TableName: NotRequired[str]
|
|
468
|
+
DatabaseName: NotRequired[str]
|
|
469
|
+
TableStatus: NotRequired[TableStatusType]
|
|
470
|
+
RetentionProperties: NotRequired[RetentionPropertiesTypeDef]
|
|
471
|
+
CreationTime: NotRequired[datetime]
|
|
472
|
+
LastUpdatedTime: NotRequired[datetime]
|
|
473
|
+
MagneticStoreWriteProperties: NotRequired[MagneticStoreWritePropertiesTypeDef]
|
|
474
|
+
Schema: NotRequired[SchemaOutputTypeDef]
|
|
475
|
+
|
|
476
|
+
|
|
477
|
+
class UpdateTableRequestRequestTypeDef(TypedDict):
|
|
478
|
+
DatabaseName: str
|
|
479
|
+
TableName: str
|
|
480
|
+
RetentionProperties: NotRequired[RetentionPropertiesTypeDef]
|
|
481
|
+
MagneticStoreWriteProperties: NotRequired[MagneticStoreWritePropertiesTypeDef]
|
|
482
|
+
Schema: NotRequired[SchemaTypeDef]
|
|
483
|
+
|
|
484
|
+
|
|
485
|
+
class DataModelConfigurationOutputTypeDef(TypedDict):
|
|
486
|
+
DataModel: NotRequired[DataModelOutputTypeDef]
|
|
487
|
+
DataModelS3Configuration: NotRequired[DataModelS3ConfigurationTypeDef]
|
|
488
|
+
|
|
489
|
+
|
|
490
|
+
class DataModelTypeDef(TypedDict):
|
|
491
|
+
DimensionMappings: Sequence[DimensionMappingTypeDef]
|
|
492
|
+
TimeColumn: NotRequired[str]
|
|
493
|
+
TimeUnit: NotRequired[TimeUnitType]
|
|
494
|
+
MultiMeasureMappings: NotRequired[MultiMeasureMappingsUnionTypeDef]
|
|
495
|
+
MixedMeasureMappings: NotRequired[Sequence[MixedMeasureMappingUnionTypeDef]]
|
|
496
|
+
MeasureNameColumn: NotRequired[str]
|
|
497
|
+
|
|
498
|
+
|
|
499
|
+
class CreateTableResponseTypeDef(TypedDict):
|
|
500
|
+
Table: TableTypeDef
|
|
501
|
+
ResponseMetadata: ResponseMetadataTypeDef
|
|
502
|
+
|
|
503
|
+
|
|
504
|
+
class DescribeTableResponseTypeDef(TypedDict):
|
|
505
|
+
Table: TableTypeDef
|
|
506
|
+
ResponseMetadata: ResponseMetadataTypeDef
|
|
507
|
+
|
|
508
|
+
|
|
509
|
+
class ListTablesResponseTypeDef(TypedDict):
|
|
510
|
+
Tables: List[TableTypeDef]
|
|
511
|
+
ResponseMetadata: ResponseMetadataTypeDef
|
|
512
|
+
NextToken: NotRequired[str]
|
|
513
|
+
|
|
514
|
+
|
|
515
|
+
class UpdateTableResponseTypeDef(TypedDict):
|
|
516
|
+
Table: TableTypeDef
|
|
517
|
+
ResponseMetadata: ResponseMetadataTypeDef
|
|
518
|
+
|
|
519
|
+
|
|
520
|
+
class BatchLoadTaskDescriptionTypeDef(TypedDict):
|
|
521
|
+
TaskId: NotRequired[str]
|
|
522
|
+
ErrorMessage: NotRequired[str]
|
|
523
|
+
DataSourceConfiguration: NotRequired[DataSourceConfigurationTypeDef]
|
|
524
|
+
ProgressReport: NotRequired[BatchLoadProgressReportTypeDef]
|
|
525
|
+
ReportConfiguration: NotRequired[ReportConfigurationTypeDef]
|
|
526
|
+
DataModelConfiguration: NotRequired[DataModelConfigurationOutputTypeDef]
|
|
527
|
+
TargetDatabaseName: NotRequired[str]
|
|
528
|
+
TargetTableName: NotRequired[str]
|
|
529
|
+
TaskStatus: NotRequired[BatchLoadStatusType]
|
|
530
|
+
RecordVersion: NotRequired[int]
|
|
531
|
+
CreationTime: NotRequired[datetime]
|
|
532
|
+
LastUpdatedTime: NotRequired[datetime]
|
|
533
|
+
ResumableUntil: NotRequired[datetime]
|
|
534
|
+
|
|
535
|
+
|
|
536
|
+
DataModelUnionTypeDef = Union[DataModelTypeDef, DataModelOutputTypeDef]
|
|
537
|
+
|
|
538
|
+
|
|
539
|
+
class DescribeBatchLoadTaskResponseTypeDef(TypedDict):
|
|
540
|
+
BatchLoadTaskDescription: BatchLoadTaskDescriptionTypeDef
|
|
541
|
+
ResponseMetadata: ResponseMetadataTypeDef
|
|
542
|
+
|
|
543
|
+
|
|
544
|
+
class DataModelConfigurationTypeDef(TypedDict):
|
|
545
|
+
DataModel: NotRequired[DataModelUnionTypeDef]
|
|
546
|
+
DataModelS3Configuration: NotRequired[DataModelS3ConfigurationTypeDef]
|
|
547
|
+
|
|
548
|
+
|
|
549
|
+
class CreateBatchLoadTaskRequestRequestTypeDef(TypedDict):
|
|
550
|
+
DataSourceConfiguration: DataSourceConfigurationTypeDef
|
|
551
|
+
ReportConfiguration: ReportConfigurationTypeDef
|
|
552
|
+
TargetDatabaseName: str
|
|
553
|
+
TargetTableName: str
|
|
554
|
+
ClientToken: NotRequired[str]
|
|
555
|
+
DataModelConfiguration: NotRequired[DataModelConfigurationTypeDef]
|
|
556
|
+
RecordVersion: NotRequired[int]
|