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