mypy-boto3-timestream-write 1.34.0__py3-none-any.whl → 1.35.0__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 +0 -1
- mypy_boto3_timestream_write/__main__.py +8 -7
- mypy_boto3_timestream_write/client.py +7 -7
- mypy_boto3_timestream_write/client.pyi +7 -7
- mypy_boto3_timestream_write/literals.py +17 -7
- mypy_boto3_timestream_write/literals.pyi +17 -5
- mypy_boto3_timestream_write/type_defs.py +59 -8
- mypy_boto3_timestream_write/type_defs.pyi +59 -7
- mypy_boto3_timestream_write/version.py +1 -1
- {mypy_boto3_timestream_write-1.34.0.dist-info → mypy_boto3_timestream_write-1.35.0.dist-info}/LICENSE +1 -1
- {mypy_boto3_timestream_write-1.34.0.dist-info → mypy_boto3_timestream_write-1.35.0.dist-info}/METADATA +7 -8
- mypy_boto3_timestream_write-1.35.0.dist-info/RECORD +16 -0
- {mypy_boto3_timestream_write-1.34.0.dist-info → mypy_boto3_timestream_write-1.35.0.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.0.dist-info}/top_level.txt +0 -0
|
@@ -10,12 +10,13 @@ def print_info() -> None:
|
|
|
10
10
|
Print package info to stdout.
|
|
11
11
|
"""
|
|
12
12
|
print(
|
|
13
|
-
"Type annotations for boto3.TimestreamWrite 1.
|
|
14
|
-
"
|
|
15
|
-
"
|
|
16
|
-
"
|
|
17
|
-
"
|
|
18
|
-
" https://
|
|
13
|
+
"Type annotations for boto3.TimestreamWrite 1.35.0\n"
|
|
14
|
+
"Version: 1.35.0\n"
|
|
15
|
+
"Builder version: 7.26.0\n"
|
|
16
|
+
"Docs: https://youtype.github.io/boto3_stubs_docs/mypy_boto3_timestream_write//\n"
|
|
17
|
+
"Boto3 docs: https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/timestream-write.html#TimestreamWrite\n"
|
|
18
|
+
"Other services: https://pypi.org/project/boto3-stubs/\n"
|
|
19
|
+
"Changelog: https://github.com/youtype/mypy_boto3_builder/releases"
|
|
19
20
|
)
|
|
20
21
|
|
|
21
22
|
|
|
@@ -23,7 +24,7 @@ def print_version() -> None:
|
|
|
23
24
|
"""
|
|
24
25
|
Print package version to stdout.
|
|
25
26
|
"""
|
|
26
|
-
print("1.
|
|
27
|
+
print("1.35.0")
|
|
27
28
|
|
|
28
29
|
|
|
29
30
|
def main() -> None:
|
|
@@ -23,7 +23,7 @@ from .type_defs import (
|
|
|
23
23
|
CreateBatchLoadTaskResponseTypeDef,
|
|
24
24
|
CreateDatabaseResponseTypeDef,
|
|
25
25
|
CreateTableResponseTypeDef,
|
|
26
|
-
|
|
26
|
+
DataModelConfigurationUnionTypeDef,
|
|
27
27
|
DataSourceConfigurationTypeDef,
|
|
28
28
|
DescribeBatchLoadTaskResponseTypeDef,
|
|
29
29
|
DescribeDatabaseResponseTypeDef,
|
|
@@ -38,7 +38,7 @@ from .type_defs import (
|
|
|
38
38
|
RecordTypeDef,
|
|
39
39
|
ReportConfigurationTypeDef,
|
|
40
40
|
RetentionPropertiesTypeDef,
|
|
41
|
-
|
|
41
|
+
SchemaUnionTypeDef,
|
|
42
42
|
TagTypeDef,
|
|
43
43
|
UpdateDatabaseResponseTypeDef,
|
|
44
44
|
UpdateTableResponseTypeDef,
|
|
@@ -110,8 +110,8 @@ class TimestreamWriteClient(BaseClient):
|
|
|
110
110
|
TargetDatabaseName: str,
|
|
111
111
|
TargetTableName: str,
|
|
112
112
|
ClientToken: str = ...,
|
|
113
|
-
DataModelConfiguration:
|
|
114
|
-
RecordVersion: int =
|
|
113
|
+
DataModelConfiguration: DataModelConfigurationUnionTypeDef = ...,
|
|
114
|
+
RecordVersion: int = ...,
|
|
115
115
|
) -> CreateBatchLoadTaskResponseTypeDef:
|
|
116
116
|
"""
|
|
117
117
|
Creates a new Timestream batch load task.
|
|
@@ -138,7 +138,7 @@ class TimestreamWriteClient(BaseClient):
|
|
|
138
138
|
RetentionProperties: RetentionPropertiesTypeDef = ...,
|
|
139
139
|
Tags: Sequence[TagTypeDef] = ...,
|
|
140
140
|
MagneticStoreWriteProperties: MagneticStoreWritePropertiesTypeDef = ...,
|
|
141
|
-
Schema:
|
|
141
|
+
Schema: SchemaUnionTypeDef = ...,
|
|
142
142
|
) -> CreateTableResponseTypeDef:
|
|
143
143
|
"""
|
|
144
144
|
Adds a new table to an existing database in your account.
|
|
@@ -297,7 +297,7 @@ class TimestreamWriteClient(BaseClient):
|
|
|
297
297
|
TableName: str,
|
|
298
298
|
RetentionProperties: RetentionPropertiesTypeDef = ...,
|
|
299
299
|
MagneticStoreWriteProperties: MagneticStoreWritePropertiesTypeDef = ...,
|
|
300
|
-
Schema:
|
|
300
|
+
Schema: SchemaUnionTypeDef = ...,
|
|
301
301
|
) -> UpdateTableResponseTypeDef:
|
|
302
302
|
"""
|
|
303
303
|
Modifies the retention duration of the memory store and magnetic store for your
|
|
@@ -314,7 +314,7 @@ class TimestreamWriteClient(BaseClient):
|
|
|
314
314
|
DatabaseName: str,
|
|
315
315
|
TableName: str,
|
|
316
316
|
Records: Sequence[RecordTypeDef],
|
|
317
|
-
CommonAttributes: RecordTypeDef =
|
|
317
|
+
CommonAttributes: RecordTypeDef = ...,
|
|
318
318
|
) -> WriteRecordsResponseTypeDef:
|
|
319
319
|
"""
|
|
320
320
|
Enables you to write your time-series data into Timestream.
|
|
@@ -23,7 +23,7 @@ from .type_defs import (
|
|
|
23
23
|
CreateBatchLoadTaskResponseTypeDef,
|
|
24
24
|
CreateDatabaseResponseTypeDef,
|
|
25
25
|
CreateTableResponseTypeDef,
|
|
26
|
-
|
|
26
|
+
DataModelConfigurationUnionTypeDef,
|
|
27
27
|
DataSourceConfigurationTypeDef,
|
|
28
28
|
DescribeBatchLoadTaskResponseTypeDef,
|
|
29
29
|
DescribeDatabaseResponseTypeDef,
|
|
@@ -38,7 +38,7 @@ from .type_defs import (
|
|
|
38
38
|
RecordTypeDef,
|
|
39
39
|
ReportConfigurationTypeDef,
|
|
40
40
|
RetentionPropertiesTypeDef,
|
|
41
|
-
|
|
41
|
+
SchemaUnionTypeDef,
|
|
42
42
|
TagTypeDef,
|
|
43
43
|
UpdateDatabaseResponseTypeDef,
|
|
44
44
|
UpdateTableResponseTypeDef,
|
|
@@ -107,8 +107,8 @@ class TimestreamWriteClient(BaseClient):
|
|
|
107
107
|
TargetDatabaseName: str,
|
|
108
108
|
TargetTableName: str,
|
|
109
109
|
ClientToken: str = ...,
|
|
110
|
-
DataModelConfiguration:
|
|
111
|
-
RecordVersion: int =
|
|
110
|
+
DataModelConfiguration: DataModelConfigurationUnionTypeDef = ...,
|
|
111
|
+
RecordVersion: int = ...,
|
|
112
112
|
) -> CreateBatchLoadTaskResponseTypeDef:
|
|
113
113
|
"""
|
|
114
114
|
Creates a new Timestream batch load task.
|
|
@@ -135,7 +135,7 @@ class TimestreamWriteClient(BaseClient):
|
|
|
135
135
|
RetentionProperties: RetentionPropertiesTypeDef = ...,
|
|
136
136
|
Tags: Sequence[TagTypeDef] = ...,
|
|
137
137
|
MagneticStoreWriteProperties: MagneticStoreWritePropertiesTypeDef = ...,
|
|
138
|
-
Schema:
|
|
138
|
+
Schema: SchemaUnionTypeDef = ...,
|
|
139
139
|
) -> CreateTableResponseTypeDef:
|
|
140
140
|
"""
|
|
141
141
|
Adds a new table to an existing database in your account.
|
|
@@ -294,7 +294,7 @@ class TimestreamWriteClient(BaseClient):
|
|
|
294
294
|
TableName: str,
|
|
295
295
|
RetentionProperties: RetentionPropertiesTypeDef = ...,
|
|
296
296
|
MagneticStoreWriteProperties: MagneticStoreWritePropertiesTypeDef = ...,
|
|
297
|
-
Schema:
|
|
297
|
+
Schema: SchemaUnionTypeDef = ...,
|
|
298
298
|
) -> UpdateTableResponseTypeDef:
|
|
299
299
|
"""
|
|
300
300
|
Modifies the retention duration of the memory store and magnetic store for your
|
|
@@ -311,7 +311,7 @@ class TimestreamWriteClient(BaseClient):
|
|
|
311
311
|
DatabaseName: str,
|
|
312
312
|
TableName: str,
|
|
313
313
|
Records: Sequence[RecordTypeDef],
|
|
314
|
-
CommonAttributes: RecordTypeDef =
|
|
314
|
+
CommonAttributes: RecordTypeDef = ...,
|
|
315
315
|
) -> WriteRecordsResponseTypeDef:
|
|
316
316
|
"""
|
|
317
317
|
Enables you to write your time-series data into Timestream.
|
|
@@ -19,7 +19,6 @@ if sys.version_info >= (3, 12):
|
|
|
19
19
|
else:
|
|
20
20
|
from typing_extensions import Literal
|
|
21
21
|
|
|
22
|
-
|
|
23
22
|
__all__ = (
|
|
24
23
|
"BatchLoadDataFormatType",
|
|
25
24
|
"BatchLoadStatusType",
|
|
@@ -37,7 +36,6 @@ __all__ = (
|
|
|
37
36
|
"RegionName",
|
|
38
37
|
)
|
|
39
38
|
|
|
40
|
-
|
|
41
39
|
BatchLoadDataFormatType = Literal["CSV"]
|
|
42
40
|
BatchLoadStatusType = Literal[
|
|
43
41
|
"CREATED", "FAILED", "IN_PROGRESS", "PENDING_RESUME", "PROGRESS_STOPPED", "SUCCEEDED"
|
|
@@ -56,7 +54,6 @@ ServiceName = Literal[
|
|
|
56
54
|
"account",
|
|
57
55
|
"acm",
|
|
58
56
|
"acm-pca",
|
|
59
|
-
"alexaforbusiness",
|
|
60
57
|
"amp",
|
|
61
58
|
"amplify",
|
|
62
59
|
"amplifybackend",
|
|
@@ -71,12 +68,15 @@ ServiceName = Literal[
|
|
|
71
68
|
"appintegrations",
|
|
72
69
|
"application-autoscaling",
|
|
73
70
|
"application-insights",
|
|
71
|
+
"application-signals",
|
|
74
72
|
"applicationcostprofiler",
|
|
75
73
|
"appmesh",
|
|
76
74
|
"apprunner",
|
|
77
75
|
"appstream",
|
|
78
76
|
"appsync",
|
|
77
|
+
"apptest",
|
|
79
78
|
"arc-zonal-shift",
|
|
79
|
+
"artifact",
|
|
80
80
|
"athena",
|
|
81
81
|
"auditmanager",
|
|
82
82
|
"autoscaling",
|
|
@@ -84,7 +84,6 @@ ServiceName = Literal[
|
|
|
84
84
|
"b2bi",
|
|
85
85
|
"backup",
|
|
86
86
|
"backup-gateway",
|
|
87
|
-
"backupstorage",
|
|
88
87
|
"batch",
|
|
89
88
|
"bcm-data-exports",
|
|
90
89
|
"bedrock",
|
|
@@ -95,6 +94,7 @@ ServiceName = Literal[
|
|
|
95
94
|
"braket",
|
|
96
95
|
"budgets",
|
|
97
96
|
"ce",
|
|
97
|
+
"chatbot",
|
|
98
98
|
"chime",
|
|
99
99
|
"chime-sdk-identity",
|
|
100
100
|
"chime-sdk-media-pipelines",
|
|
@@ -120,6 +120,7 @@ ServiceName = Literal[
|
|
|
120
120
|
"codebuild",
|
|
121
121
|
"codecatalyst",
|
|
122
122
|
"codecommit",
|
|
123
|
+
"codeconnections",
|
|
123
124
|
"codedeploy",
|
|
124
125
|
"codeguru-reviewer",
|
|
125
126
|
"codeguru-security",
|
|
@@ -140,6 +141,7 @@ ServiceName = Literal[
|
|
|
140
141
|
"connectcampaigns",
|
|
141
142
|
"connectcases",
|
|
142
143
|
"connectparticipant",
|
|
144
|
+
"controlcatalog",
|
|
143
145
|
"controltower",
|
|
144
146
|
"cost-optimization-hub",
|
|
145
147
|
"cur",
|
|
@@ -150,6 +152,7 @@ ServiceName = Literal[
|
|
|
150
152
|
"datasync",
|
|
151
153
|
"datazone",
|
|
152
154
|
"dax",
|
|
155
|
+
"deadline",
|
|
153
156
|
"detective",
|
|
154
157
|
"devicefarm",
|
|
155
158
|
"devops-guru",
|
|
@@ -206,7 +209,6 @@ ServiceName = Literal[
|
|
|
206
209
|
"guardduty",
|
|
207
210
|
"health",
|
|
208
211
|
"healthlake",
|
|
209
|
-
"honeycode",
|
|
210
212
|
"iam",
|
|
211
213
|
"identitystore",
|
|
212
214
|
"imagebuilder",
|
|
@@ -218,7 +220,6 @@ ServiceName = Literal[
|
|
|
218
220
|
"iot",
|
|
219
221
|
"iot-data",
|
|
220
222
|
"iot-jobs-data",
|
|
221
|
-
"iot-roborunner",
|
|
222
223
|
"iot1click-devices",
|
|
223
224
|
"iot1click-projects",
|
|
224
225
|
"iotanalytics",
|
|
@@ -268,6 +269,7 @@ ServiceName = Literal[
|
|
|
268
269
|
"m2",
|
|
269
270
|
"machinelearning",
|
|
270
271
|
"macie2",
|
|
272
|
+
"mailmanager",
|
|
271
273
|
"managedblockchain",
|
|
272
274
|
"managedblockchain-query",
|
|
273
275
|
"marketplace-agreement",
|
|
@@ -293,14 +295,15 @@ ServiceName = Literal[
|
|
|
293
295
|
"migrationhub-config",
|
|
294
296
|
"migrationhuborchestrator",
|
|
295
297
|
"migrationhubstrategy",
|
|
296
|
-
"mobile",
|
|
297
298
|
"mq",
|
|
298
299
|
"mturk",
|
|
299
300
|
"mwaa",
|
|
300
301
|
"neptune",
|
|
302
|
+
"neptune-graph",
|
|
301
303
|
"neptunedata",
|
|
302
304
|
"network-firewall",
|
|
303
305
|
"networkmanager",
|
|
306
|
+
"networkmonitor",
|
|
304
307
|
"nimble",
|
|
305
308
|
"oam",
|
|
306
309
|
"omics",
|
|
@@ -315,6 +318,7 @@ ServiceName = Literal[
|
|
|
315
318
|
"payment-cryptography",
|
|
316
319
|
"payment-cryptography-data",
|
|
317
320
|
"pca-connector-ad",
|
|
321
|
+
"pca-connector-scep",
|
|
318
322
|
"personalize",
|
|
319
323
|
"personalize-events",
|
|
320
324
|
"personalize-runtime",
|
|
@@ -328,6 +332,7 @@ ServiceName = Literal[
|
|
|
328
332
|
"pricing",
|
|
329
333
|
"privatenetworks",
|
|
330
334
|
"proton",
|
|
335
|
+
"qapps",
|
|
331
336
|
"qbusiness",
|
|
332
337
|
"qconnect",
|
|
333
338
|
"qldb",
|
|
@@ -353,6 +358,7 @@ ServiceName = Literal[
|
|
|
353
358
|
"route53-recovery-control-config",
|
|
354
359
|
"route53-recovery-readiness",
|
|
355
360
|
"route53domains",
|
|
361
|
+
"route53profiles",
|
|
356
362
|
"route53resolver",
|
|
357
363
|
"rum",
|
|
358
364
|
"s3",
|
|
@@ -391,6 +397,7 @@ ServiceName = Literal[
|
|
|
391
397
|
"ssm",
|
|
392
398
|
"ssm-contacts",
|
|
393
399
|
"ssm-incidents",
|
|
400
|
+
"ssm-quicksetup",
|
|
394
401
|
"ssm-sap",
|
|
395
402
|
"sso",
|
|
396
403
|
"sso-admin",
|
|
@@ -398,11 +405,14 @@ ServiceName = Literal[
|
|
|
398
405
|
"stepfunctions",
|
|
399
406
|
"storagegateway",
|
|
400
407
|
"sts",
|
|
408
|
+
"supplychain",
|
|
401
409
|
"support",
|
|
402
410
|
"support-app",
|
|
403
411
|
"swf",
|
|
404
412
|
"synthetics",
|
|
413
|
+
"taxsettings",
|
|
405
414
|
"textract",
|
|
415
|
+
"timestream-influxdb",
|
|
406
416
|
"timestream-query",
|
|
407
417
|
"timestream-write",
|
|
408
418
|
"tnb",
|
|
@@ -54,7 +54,6 @@ ServiceName = Literal[
|
|
|
54
54
|
"account",
|
|
55
55
|
"acm",
|
|
56
56
|
"acm-pca",
|
|
57
|
-
"alexaforbusiness",
|
|
58
57
|
"amp",
|
|
59
58
|
"amplify",
|
|
60
59
|
"amplifybackend",
|
|
@@ -69,12 +68,15 @@ ServiceName = Literal[
|
|
|
69
68
|
"appintegrations",
|
|
70
69
|
"application-autoscaling",
|
|
71
70
|
"application-insights",
|
|
71
|
+
"application-signals",
|
|
72
72
|
"applicationcostprofiler",
|
|
73
73
|
"appmesh",
|
|
74
74
|
"apprunner",
|
|
75
75
|
"appstream",
|
|
76
76
|
"appsync",
|
|
77
|
+
"apptest",
|
|
77
78
|
"arc-zonal-shift",
|
|
79
|
+
"artifact",
|
|
78
80
|
"athena",
|
|
79
81
|
"auditmanager",
|
|
80
82
|
"autoscaling",
|
|
@@ -82,7 +84,6 @@ ServiceName = Literal[
|
|
|
82
84
|
"b2bi",
|
|
83
85
|
"backup",
|
|
84
86
|
"backup-gateway",
|
|
85
|
-
"backupstorage",
|
|
86
87
|
"batch",
|
|
87
88
|
"bcm-data-exports",
|
|
88
89
|
"bedrock",
|
|
@@ -93,6 +94,7 @@ ServiceName = Literal[
|
|
|
93
94
|
"braket",
|
|
94
95
|
"budgets",
|
|
95
96
|
"ce",
|
|
97
|
+
"chatbot",
|
|
96
98
|
"chime",
|
|
97
99
|
"chime-sdk-identity",
|
|
98
100
|
"chime-sdk-media-pipelines",
|
|
@@ -118,6 +120,7 @@ ServiceName = Literal[
|
|
|
118
120
|
"codebuild",
|
|
119
121
|
"codecatalyst",
|
|
120
122
|
"codecommit",
|
|
123
|
+
"codeconnections",
|
|
121
124
|
"codedeploy",
|
|
122
125
|
"codeguru-reviewer",
|
|
123
126
|
"codeguru-security",
|
|
@@ -138,6 +141,7 @@ ServiceName = Literal[
|
|
|
138
141
|
"connectcampaigns",
|
|
139
142
|
"connectcases",
|
|
140
143
|
"connectparticipant",
|
|
144
|
+
"controlcatalog",
|
|
141
145
|
"controltower",
|
|
142
146
|
"cost-optimization-hub",
|
|
143
147
|
"cur",
|
|
@@ -148,6 +152,7 @@ ServiceName = Literal[
|
|
|
148
152
|
"datasync",
|
|
149
153
|
"datazone",
|
|
150
154
|
"dax",
|
|
155
|
+
"deadline",
|
|
151
156
|
"detective",
|
|
152
157
|
"devicefarm",
|
|
153
158
|
"devops-guru",
|
|
@@ -204,7 +209,6 @@ ServiceName = Literal[
|
|
|
204
209
|
"guardduty",
|
|
205
210
|
"health",
|
|
206
211
|
"healthlake",
|
|
207
|
-
"honeycode",
|
|
208
212
|
"iam",
|
|
209
213
|
"identitystore",
|
|
210
214
|
"imagebuilder",
|
|
@@ -216,7 +220,6 @@ ServiceName = Literal[
|
|
|
216
220
|
"iot",
|
|
217
221
|
"iot-data",
|
|
218
222
|
"iot-jobs-data",
|
|
219
|
-
"iot-roborunner",
|
|
220
223
|
"iot1click-devices",
|
|
221
224
|
"iot1click-projects",
|
|
222
225
|
"iotanalytics",
|
|
@@ -266,6 +269,7 @@ ServiceName = Literal[
|
|
|
266
269
|
"m2",
|
|
267
270
|
"machinelearning",
|
|
268
271
|
"macie2",
|
|
272
|
+
"mailmanager",
|
|
269
273
|
"managedblockchain",
|
|
270
274
|
"managedblockchain-query",
|
|
271
275
|
"marketplace-agreement",
|
|
@@ -291,14 +295,15 @@ ServiceName = Literal[
|
|
|
291
295
|
"migrationhub-config",
|
|
292
296
|
"migrationhuborchestrator",
|
|
293
297
|
"migrationhubstrategy",
|
|
294
|
-
"mobile",
|
|
295
298
|
"mq",
|
|
296
299
|
"mturk",
|
|
297
300
|
"mwaa",
|
|
298
301
|
"neptune",
|
|
302
|
+
"neptune-graph",
|
|
299
303
|
"neptunedata",
|
|
300
304
|
"network-firewall",
|
|
301
305
|
"networkmanager",
|
|
306
|
+
"networkmonitor",
|
|
302
307
|
"nimble",
|
|
303
308
|
"oam",
|
|
304
309
|
"omics",
|
|
@@ -313,6 +318,7 @@ ServiceName = Literal[
|
|
|
313
318
|
"payment-cryptography",
|
|
314
319
|
"payment-cryptography-data",
|
|
315
320
|
"pca-connector-ad",
|
|
321
|
+
"pca-connector-scep",
|
|
316
322
|
"personalize",
|
|
317
323
|
"personalize-events",
|
|
318
324
|
"personalize-runtime",
|
|
@@ -326,6 +332,7 @@ ServiceName = Literal[
|
|
|
326
332
|
"pricing",
|
|
327
333
|
"privatenetworks",
|
|
328
334
|
"proton",
|
|
335
|
+
"qapps",
|
|
329
336
|
"qbusiness",
|
|
330
337
|
"qconnect",
|
|
331
338
|
"qldb",
|
|
@@ -351,6 +358,7 @@ ServiceName = Literal[
|
|
|
351
358
|
"route53-recovery-control-config",
|
|
352
359
|
"route53-recovery-readiness",
|
|
353
360
|
"route53domains",
|
|
361
|
+
"route53profiles",
|
|
354
362
|
"route53resolver",
|
|
355
363
|
"rum",
|
|
356
364
|
"s3",
|
|
@@ -389,6 +397,7 @@ ServiceName = Literal[
|
|
|
389
397
|
"ssm",
|
|
390
398
|
"ssm-contacts",
|
|
391
399
|
"ssm-incidents",
|
|
400
|
+
"ssm-quicksetup",
|
|
392
401
|
"ssm-sap",
|
|
393
402
|
"sso",
|
|
394
403
|
"sso-admin",
|
|
@@ -396,11 +405,14 @@ ServiceName = Literal[
|
|
|
396
405
|
"stepfunctions",
|
|
397
406
|
"storagegateway",
|
|
398
407
|
"sts",
|
|
408
|
+
"supplychain",
|
|
399
409
|
"support",
|
|
400
410
|
"support-app",
|
|
401
411
|
"swf",
|
|
402
412
|
"synthetics",
|
|
413
|
+
"taxsettings",
|
|
403
414
|
"textract",
|
|
415
|
+
"timestream-influxdb",
|
|
404
416
|
"timestream-query",
|
|
405
417
|
"timestream-write",
|
|
406
418
|
"tnb",
|
|
@@ -14,7 +14,7 @@ Usage::
|
|
|
14
14
|
|
|
15
15
|
import sys
|
|
16
16
|
from datetime import datetime
|
|
17
|
-
from typing import Dict, List, Sequence
|
|
17
|
+
from typing import Dict, List, Sequence, Union
|
|
18
18
|
|
|
19
19
|
from .literals import (
|
|
20
20
|
BatchLoadStatusType,
|
|
@@ -40,7 +40,6 @@ if sys.version_info >= (3, 12):
|
|
|
40
40
|
else:
|
|
41
41
|
from typing_extensions import TypedDict
|
|
42
42
|
|
|
43
|
-
|
|
44
43
|
__all__ = (
|
|
45
44
|
"BatchLoadProgressReportTypeDef",
|
|
46
45
|
"BatchLoadTaskTypeDef",
|
|
@@ -86,17 +85,23 @@ __all__ = (
|
|
|
86
85
|
"DescribeEndpointsResponseTypeDef",
|
|
87
86
|
"MagneticStoreRejectedDataLocationTypeDef",
|
|
88
87
|
"RecordTypeDef",
|
|
88
|
+
"MixedMeasureMappingOutputTypeDef",
|
|
89
89
|
"MixedMeasureMappingTypeDef",
|
|
90
|
+
"MultiMeasureMappingsOutputTypeDef",
|
|
90
91
|
"MultiMeasureMappingsTypeDef",
|
|
92
|
+
"SchemaOutputTypeDef",
|
|
91
93
|
"SchemaTypeDef",
|
|
92
94
|
"WriteRecordsResponseTypeDef",
|
|
93
95
|
"ReportConfigurationTypeDef",
|
|
94
96
|
"MagneticStoreWritePropertiesTypeDef",
|
|
95
97
|
"WriteRecordsRequestRequestTypeDef",
|
|
98
|
+
"DataModelOutputTypeDef",
|
|
96
99
|
"DataModelTypeDef",
|
|
100
|
+
"SchemaUnionTypeDef",
|
|
97
101
|
"CreateTableRequestRequestTypeDef",
|
|
98
102
|
"TableTypeDef",
|
|
99
103
|
"UpdateTableRequestRequestTypeDef",
|
|
104
|
+
"DataModelConfigurationOutputTypeDef",
|
|
100
105
|
"DataModelConfigurationTypeDef",
|
|
101
106
|
"CreateTableResponseTypeDef",
|
|
102
107
|
"DescribeTableResponseTypeDef",
|
|
@@ -104,6 +109,7 @@ __all__ = (
|
|
|
104
109
|
"UpdateTableResponseTypeDef",
|
|
105
110
|
"BatchLoadTaskDescriptionTypeDef",
|
|
106
111
|
"CreateBatchLoadTaskRequestRequestTypeDef",
|
|
112
|
+
"DataModelConfigurationUnionTypeDef",
|
|
107
113
|
"DescribeBatchLoadTaskResponseTypeDef",
|
|
108
114
|
)
|
|
109
115
|
|
|
@@ -134,10 +140,10 @@ ResponseMetadataTypeDef = TypedDict(
|
|
|
134
140
|
"ResponseMetadataTypeDef",
|
|
135
141
|
{
|
|
136
142
|
"RequestId": str,
|
|
137
|
-
"HostId": str,
|
|
138
143
|
"HTTPStatusCode": int,
|
|
139
144
|
"HTTPHeaders": Dict[str, str],
|
|
140
145
|
"RetryAttempts": int,
|
|
146
|
+
"HostId": NotRequired[str],
|
|
141
147
|
},
|
|
142
148
|
)
|
|
143
149
|
TagTypeDef = TypedDict(
|
|
@@ -358,9 +364,9 @@ EmptyResponseMetadataTypeDef = TypedDict(
|
|
|
358
364
|
ListBatchLoadTasksResponseTypeDef = TypedDict(
|
|
359
365
|
"ListBatchLoadTasksResponseTypeDef",
|
|
360
366
|
{
|
|
361
|
-
"NextToken": str,
|
|
362
367
|
"BatchLoadTasks": List[BatchLoadTaskTypeDef],
|
|
363
368
|
"ResponseMetadata": ResponseMetadataTypeDef,
|
|
369
|
+
"NextToken": NotRequired[str],
|
|
364
370
|
},
|
|
365
371
|
)
|
|
366
372
|
CreateDatabaseRequestRequestTypeDef = TypedDict(
|
|
@@ -403,8 +409,8 @@ ListDatabasesResponseTypeDef = TypedDict(
|
|
|
403
409
|
"ListDatabasesResponseTypeDef",
|
|
404
410
|
{
|
|
405
411
|
"Databases": List[DatabaseTypeDef],
|
|
406
|
-
"NextToken": str,
|
|
407
412
|
"ResponseMetadata": ResponseMetadataTypeDef,
|
|
413
|
+
"NextToken": NotRequired[str],
|
|
408
414
|
},
|
|
409
415
|
)
|
|
410
416
|
UpdateDatabaseResponseTypeDef = TypedDict(
|
|
@@ -448,6 +454,16 @@ RecordTypeDef = TypedDict(
|
|
|
448
454
|
"MeasureValues": NotRequired[Sequence[MeasureValueTypeDef]],
|
|
449
455
|
},
|
|
450
456
|
)
|
|
457
|
+
MixedMeasureMappingOutputTypeDef = TypedDict(
|
|
458
|
+
"MixedMeasureMappingOutputTypeDef",
|
|
459
|
+
{
|
|
460
|
+
"MeasureValueType": MeasureValueTypeType,
|
|
461
|
+
"MeasureName": NotRequired[str],
|
|
462
|
+
"SourceColumn": NotRequired[str],
|
|
463
|
+
"TargetMeasureName": NotRequired[str],
|
|
464
|
+
"MultiMeasureAttributeMappings": NotRequired[List[MultiMeasureAttributeMappingTypeDef]],
|
|
465
|
+
},
|
|
466
|
+
)
|
|
451
467
|
MixedMeasureMappingTypeDef = TypedDict(
|
|
452
468
|
"MixedMeasureMappingTypeDef",
|
|
453
469
|
{
|
|
@@ -458,6 +474,13 @@ MixedMeasureMappingTypeDef = TypedDict(
|
|
|
458
474
|
"MultiMeasureAttributeMappings": NotRequired[Sequence[MultiMeasureAttributeMappingTypeDef]],
|
|
459
475
|
},
|
|
460
476
|
)
|
|
477
|
+
MultiMeasureMappingsOutputTypeDef = TypedDict(
|
|
478
|
+
"MultiMeasureMappingsOutputTypeDef",
|
|
479
|
+
{
|
|
480
|
+
"MultiMeasureAttributeMappings": List[MultiMeasureAttributeMappingTypeDef],
|
|
481
|
+
"TargetMultiMeasureName": NotRequired[str],
|
|
482
|
+
},
|
|
483
|
+
)
|
|
461
484
|
MultiMeasureMappingsTypeDef = TypedDict(
|
|
462
485
|
"MultiMeasureMappingsTypeDef",
|
|
463
486
|
{
|
|
@@ -465,6 +488,12 @@ MultiMeasureMappingsTypeDef = TypedDict(
|
|
|
465
488
|
"TargetMultiMeasureName": NotRequired[str],
|
|
466
489
|
},
|
|
467
490
|
)
|
|
491
|
+
SchemaOutputTypeDef = TypedDict(
|
|
492
|
+
"SchemaOutputTypeDef",
|
|
493
|
+
{
|
|
494
|
+
"CompositePartitionKey": NotRequired[List[PartitionKeyTypeDef]],
|
|
495
|
+
},
|
|
496
|
+
)
|
|
468
497
|
SchemaTypeDef = TypedDict(
|
|
469
498
|
"SchemaTypeDef",
|
|
470
499
|
{
|
|
@@ -500,6 +529,17 @@ WriteRecordsRequestRequestTypeDef = TypedDict(
|
|
|
500
529
|
"CommonAttributes": NotRequired[RecordTypeDef],
|
|
501
530
|
},
|
|
502
531
|
)
|
|
532
|
+
DataModelOutputTypeDef = TypedDict(
|
|
533
|
+
"DataModelOutputTypeDef",
|
|
534
|
+
{
|
|
535
|
+
"DimensionMappings": List[DimensionMappingTypeDef],
|
|
536
|
+
"TimeColumn": NotRequired[str],
|
|
537
|
+
"TimeUnit": NotRequired[TimeUnitType],
|
|
538
|
+
"MultiMeasureMappings": NotRequired[MultiMeasureMappingsOutputTypeDef],
|
|
539
|
+
"MixedMeasureMappings": NotRequired[List[MixedMeasureMappingOutputTypeDef]],
|
|
540
|
+
"MeasureNameColumn": NotRequired[str],
|
|
541
|
+
},
|
|
542
|
+
)
|
|
503
543
|
DataModelTypeDef = TypedDict(
|
|
504
544
|
"DataModelTypeDef",
|
|
505
545
|
{
|
|
@@ -511,6 +551,7 @@ DataModelTypeDef = TypedDict(
|
|
|
511
551
|
"MeasureNameColumn": NotRequired[str],
|
|
512
552
|
},
|
|
513
553
|
)
|
|
554
|
+
SchemaUnionTypeDef = Union[SchemaTypeDef, SchemaOutputTypeDef]
|
|
514
555
|
CreateTableRequestRequestTypeDef = TypedDict(
|
|
515
556
|
"CreateTableRequestRequestTypeDef",
|
|
516
557
|
{
|
|
@@ -533,7 +574,7 @@ TableTypeDef = TypedDict(
|
|
|
533
574
|
"CreationTime": NotRequired[datetime],
|
|
534
575
|
"LastUpdatedTime": NotRequired[datetime],
|
|
535
576
|
"MagneticStoreWriteProperties": NotRequired[MagneticStoreWritePropertiesTypeDef],
|
|
536
|
-
"Schema": NotRequired[
|
|
577
|
+
"Schema": NotRequired[SchemaOutputTypeDef],
|
|
537
578
|
},
|
|
538
579
|
)
|
|
539
580
|
UpdateTableRequestRequestTypeDef = TypedDict(
|
|
@@ -546,6 +587,13 @@ UpdateTableRequestRequestTypeDef = TypedDict(
|
|
|
546
587
|
"Schema": NotRequired[SchemaTypeDef],
|
|
547
588
|
},
|
|
548
589
|
)
|
|
590
|
+
DataModelConfigurationOutputTypeDef = TypedDict(
|
|
591
|
+
"DataModelConfigurationOutputTypeDef",
|
|
592
|
+
{
|
|
593
|
+
"DataModel": NotRequired[DataModelOutputTypeDef],
|
|
594
|
+
"DataModelS3Configuration": NotRequired[DataModelS3ConfigurationTypeDef],
|
|
595
|
+
},
|
|
596
|
+
)
|
|
549
597
|
DataModelConfigurationTypeDef = TypedDict(
|
|
550
598
|
"DataModelConfigurationTypeDef",
|
|
551
599
|
{
|
|
@@ -571,8 +619,8 @@ ListTablesResponseTypeDef = TypedDict(
|
|
|
571
619
|
"ListTablesResponseTypeDef",
|
|
572
620
|
{
|
|
573
621
|
"Tables": List[TableTypeDef],
|
|
574
|
-
"NextToken": str,
|
|
575
622
|
"ResponseMetadata": ResponseMetadataTypeDef,
|
|
623
|
+
"NextToken": NotRequired[str],
|
|
576
624
|
},
|
|
577
625
|
)
|
|
578
626
|
UpdateTableResponseTypeDef = TypedDict(
|
|
@@ -590,7 +638,7 @@ BatchLoadTaskDescriptionTypeDef = TypedDict(
|
|
|
590
638
|
"DataSourceConfiguration": NotRequired[DataSourceConfigurationTypeDef],
|
|
591
639
|
"ProgressReport": NotRequired[BatchLoadProgressReportTypeDef],
|
|
592
640
|
"ReportConfiguration": NotRequired[ReportConfigurationTypeDef],
|
|
593
|
-
"DataModelConfiguration": NotRequired[
|
|
641
|
+
"DataModelConfiguration": NotRequired[DataModelConfigurationOutputTypeDef],
|
|
594
642
|
"TargetDatabaseName": NotRequired[str],
|
|
595
643
|
"TargetTableName": NotRequired[str],
|
|
596
644
|
"TaskStatus": NotRequired[BatchLoadStatusType],
|
|
@@ -612,6 +660,9 @@ CreateBatchLoadTaskRequestRequestTypeDef = TypedDict(
|
|
|
612
660
|
"RecordVersion": NotRequired[int],
|
|
613
661
|
},
|
|
614
662
|
)
|
|
663
|
+
DataModelConfigurationUnionTypeDef = Union[
|
|
664
|
+
DataModelConfigurationTypeDef, DataModelConfigurationOutputTypeDef
|
|
665
|
+
]
|
|
615
666
|
DescribeBatchLoadTaskResponseTypeDef = TypedDict(
|
|
616
667
|
"DescribeBatchLoadTaskResponseTypeDef",
|
|
617
668
|
{
|
|
@@ -14,7 +14,7 @@ Usage::
|
|
|
14
14
|
|
|
15
15
|
import sys
|
|
16
16
|
from datetime import datetime
|
|
17
|
-
from typing import Dict, List, Sequence
|
|
17
|
+
from typing import Dict, List, Sequence, Union
|
|
18
18
|
|
|
19
19
|
from .literals import (
|
|
20
20
|
BatchLoadStatusType,
|
|
@@ -85,17 +85,23 @@ __all__ = (
|
|
|
85
85
|
"DescribeEndpointsResponseTypeDef",
|
|
86
86
|
"MagneticStoreRejectedDataLocationTypeDef",
|
|
87
87
|
"RecordTypeDef",
|
|
88
|
+
"MixedMeasureMappingOutputTypeDef",
|
|
88
89
|
"MixedMeasureMappingTypeDef",
|
|
90
|
+
"MultiMeasureMappingsOutputTypeDef",
|
|
89
91
|
"MultiMeasureMappingsTypeDef",
|
|
92
|
+
"SchemaOutputTypeDef",
|
|
90
93
|
"SchemaTypeDef",
|
|
91
94
|
"WriteRecordsResponseTypeDef",
|
|
92
95
|
"ReportConfigurationTypeDef",
|
|
93
96
|
"MagneticStoreWritePropertiesTypeDef",
|
|
94
97
|
"WriteRecordsRequestRequestTypeDef",
|
|
98
|
+
"DataModelOutputTypeDef",
|
|
95
99
|
"DataModelTypeDef",
|
|
100
|
+
"SchemaUnionTypeDef",
|
|
96
101
|
"CreateTableRequestRequestTypeDef",
|
|
97
102
|
"TableTypeDef",
|
|
98
103
|
"UpdateTableRequestRequestTypeDef",
|
|
104
|
+
"DataModelConfigurationOutputTypeDef",
|
|
99
105
|
"DataModelConfigurationTypeDef",
|
|
100
106
|
"CreateTableResponseTypeDef",
|
|
101
107
|
"DescribeTableResponseTypeDef",
|
|
@@ -103,6 +109,7 @@ __all__ = (
|
|
|
103
109
|
"UpdateTableResponseTypeDef",
|
|
104
110
|
"BatchLoadTaskDescriptionTypeDef",
|
|
105
111
|
"CreateBatchLoadTaskRequestRequestTypeDef",
|
|
112
|
+
"DataModelConfigurationUnionTypeDef",
|
|
106
113
|
"DescribeBatchLoadTaskResponseTypeDef",
|
|
107
114
|
)
|
|
108
115
|
|
|
@@ -133,10 +140,10 @@ ResponseMetadataTypeDef = TypedDict(
|
|
|
133
140
|
"ResponseMetadataTypeDef",
|
|
134
141
|
{
|
|
135
142
|
"RequestId": str,
|
|
136
|
-
"HostId": str,
|
|
137
143
|
"HTTPStatusCode": int,
|
|
138
144
|
"HTTPHeaders": Dict[str, str],
|
|
139
145
|
"RetryAttempts": int,
|
|
146
|
+
"HostId": NotRequired[str],
|
|
140
147
|
},
|
|
141
148
|
)
|
|
142
149
|
TagTypeDef = TypedDict(
|
|
@@ -357,9 +364,9 @@ EmptyResponseMetadataTypeDef = TypedDict(
|
|
|
357
364
|
ListBatchLoadTasksResponseTypeDef = TypedDict(
|
|
358
365
|
"ListBatchLoadTasksResponseTypeDef",
|
|
359
366
|
{
|
|
360
|
-
"NextToken": str,
|
|
361
367
|
"BatchLoadTasks": List[BatchLoadTaskTypeDef],
|
|
362
368
|
"ResponseMetadata": ResponseMetadataTypeDef,
|
|
369
|
+
"NextToken": NotRequired[str],
|
|
363
370
|
},
|
|
364
371
|
)
|
|
365
372
|
CreateDatabaseRequestRequestTypeDef = TypedDict(
|
|
@@ -402,8 +409,8 @@ ListDatabasesResponseTypeDef = TypedDict(
|
|
|
402
409
|
"ListDatabasesResponseTypeDef",
|
|
403
410
|
{
|
|
404
411
|
"Databases": List[DatabaseTypeDef],
|
|
405
|
-
"NextToken": str,
|
|
406
412
|
"ResponseMetadata": ResponseMetadataTypeDef,
|
|
413
|
+
"NextToken": NotRequired[str],
|
|
407
414
|
},
|
|
408
415
|
)
|
|
409
416
|
UpdateDatabaseResponseTypeDef = TypedDict(
|
|
@@ -447,6 +454,16 @@ RecordTypeDef = TypedDict(
|
|
|
447
454
|
"MeasureValues": NotRequired[Sequence[MeasureValueTypeDef]],
|
|
448
455
|
},
|
|
449
456
|
)
|
|
457
|
+
MixedMeasureMappingOutputTypeDef = TypedDict(
|
|
458
|
+
"MixedMeasureMappingOutputTypeDef",
|
|
459
|
+
{
|
|
460
|
+
"MeasureValueType": MeasureValueTypeType,
|
|
461
|
+
"MeasureName": NotRequired[str],
|
|
462
|
+
"SourceColumn": NotRequired[str],
|
|
463
|
+
"TargetMeasureName": NotRequired[str],
|
|
464
|
+
"MultiMeasureAttributeMappings": NotRequired[List[MultiMeasureAttributeMappingTypeDef]],
|
|
465
|
+
},
|
|
466
|
+
)
|
|
450
467
|
MixedMeasureMappingTypeDef = TypedDict(
|
|
451
468
|
"MixedMeasureMappingTypeDef",
|
|
452
469
|
{
|
|
@@ -457,6 +474,13 @@ MixedMeasureMappingTypeDef = TypedDict(
|
|
|
457
474
|
"MultiMeasureAttributeMappings": NotRequired[Sequence[MultiMeasureAttributeMappingTypeDef]],
|
|
458
475
|
},
|
|
459
476
|
)
|
|
477
|
+
MultiMeasureMappingsOutputTypeDef = TypedDict(
|
|
478
|
+
"MultiMeasureMappingsOutputTypeDef",
|
|
479
|
+
{
|
|
480
|
+
"MultiMeasureAttributeMappings": List[MultiMeasureAttributeMappingTypeDef],
|
|
481
|
+
"TargetMultiMeasureName": NotRequired[str],
|
|
482
|
+
},
|
|
483
|
+
)
|
|
460
484
|
MultiMeasureMappingsTypeDef = TypedDict(
|
|
461
485
|
"MultiMeasureMappingsTypeDef",
|
|
462
486
|
{
|
|
@@ -464,6 +488,12 @@ MultiMeasureMappingsTypeDef = TypedDict(
|
|
|
464
488
|
"TargetMultiMeasureName": NotRequired[str],
|
|
465
489
|
},
|
|
466
490
|
)
|
|
491
|
+
SchemaOutputTypeDef = TypedDict(
|
|
492
|
+
"SchemaOutputTypeDef",
|
|
493
|
+
{
|
|
494
|
+
"CompositePartitionKey": NotRequired[List[PartitionKeyTypeDef]],
|
|
495
|
+
},
|
|
496
|
+
)
|
|
467
497
|
SchemaTypeDef = TypedDict(
|
|
468
498
|
"SchemaTypeDef",
|
|
469
499
|
{
|
|
@@ -499,6 +529,17 @@ WriteRecordsRequestRequestTypeDef = TypedDict(
|
|
|
499
529
|
"CommonAttributes": NotRequired[RecordTypeDef],
|
|
500
530
|
},
|
|
501
531
|
)
|
|
532
|
+
DataModelOutputTypeDef = TypedDict(
|
|
533
|
+
"DataModelOutputTypeDef",
|
|
534
|
+
{
|
|
535
|
+
"DimensionMappings": List[DimensionMappingTypeDef],
|
|
536
|
+
"TimeColumn": NotRequired[str],
|
|
537
|
+
"TimeUnit": NotRequired[TimeUnitType],
|
|
538
|
+
"MultiMeasureMappings": NotRequired[MultiMeasureMappingsOutputTypeDef],
|
|
539
|
+
"MixedMeasureMappings": NotRequired[List[MixedMeasureMappingOutputTypeDef]],
|
|
540
|
+
"MeasureNameColumn": NotRequired[str],
|
|
541
|
+
},
|
|
542
|
+
)
|
|
502
543
|
DataModelTypeDef = TypedDict(
|
|
503
544
|
"DataModelTypeDef",
|
|
504
545
|
{
|
|
@@ -510,6 +551,7 @@ DataModelTypeDef = TypedDict(
|
|
|
510
551
|
"MeasureNameColumn": NotRequired[str],
|
|
511
552
|
},
|
|
512
553
|
)
|
|
554
|
+
SchemaUnionTypeDef = Union[SchemaTypeDef, SchemaOutputTypeDef]
|
|
513
555
|
CreateTableRequestRequestTypeDef = TypedDict(
|
|
514
556
|
"CreateTableRequestRequestTypeDef",
|
|
515
557
|
{
|
|
@@ -532,7 +574,7 @@ TableTypeDef = TypedDict(
|
|
|
532
574
|
"CreationTime": NotRequired[datetime],
|
|
533
575
|
"LastUpdatedTime": NotRequired[datetime],
|
|
534
576
|
"MagneticStoreWriteProperties": NotRequired[MagneticStoreWritePropertiesTypeDef],
|
|
535
|
-
"Schema": NotRequired[
|
|
577
|
+
"Schema": NotRequired[SchemaOutputTypeDef],
|
|
536
578
|
},
|
|
537
579
|
)
|
|
538
580
|
UpdateTableRequestRequestTypeDef = TypedDict(
|
|
@@ -545,6 +587,13 @@ UpdateTableRequestRequestTypeDef = TypedDict(
|
|
|
545
587
|
"Schema": NotRequired[SchemaTypeDef],
|
|
546
588
|
},
|
|
547
589
|
)
|
|
590
|
+
DataModelConfigurationOutputTypeDef = TypedDict(
|
|
591
|
+
"DataModelConfigurationOutputTypeDef",
|
|
592
|
+
{
|
|
593
|
+
"DataModel": NotRequired[DataModelOutputTypeDef],
|
|
594
|
+
"DataModelS3Configuration": NotRequired[DataModelS3ConfigurationTypeDef],
|
|
595
|
+
},
|
|
596
|
+
)
|
|
548
597
|
DataModelConfigurationTypeDef = TypedDict(
|
|
549
598
|
"DataModelConfigurationTypeDef",
|
|
550
599
|
{
|
|
@@ -570,8 +619,8 @@ ListTablesResponseTypeDef = TypedDict(
|
|
|
570
619
|
"ListTablesResponseTypeDef",
|
|
571
620
|
{
|
|
572
621
|
"Tables": List[TableTypeDef],
|
|
573
|
-
"NextToken": str,
|
|
574
622
|
"ResponseMetadata": ResponseMetadataTypeDef,
|
|
623
|
+
"NextToken": NotRequired[str],
|
|
575
624
|
},
|
|
576
625
|
)
|
|
577
626
|
UpdateTableResponseTypeDef = TypedDict(
|
|
@@ -589,7 +638,7 @@ BatchLoadTaskDescriptionTypeDef = TypedDict(
|
|
|
589
638
|
"DataSourceConfiguration": NotRequired[DataSourceConfigurationTypeDef],
|
|
590
639
|
"ProgressReport": NotRequired[BatchLoadProgressReportTypeDef],
|
|
591
640
|
"ReportConfiguration": NotRequired[ReportConfigurationTypeDef],
|
|
592
|
-
"DataModelConfiguration": NotRequired[
|
|
641
|
+
"DataModelConfiguration": NotRequired[DataModelConfigurationOutputTypeDef],
|
|
593
642
|
"TargetDatabaseName": NotRequired[str],
|
|
594
643
|
"TargetTableName": NotRequired[str],
|
|
595
644
|
"TaskStatus": NotRequired[BatchLoadStatusType],
|
|
@@ -611,6 +660,9 @@ CreateBatchLoadTaskRequestRequestTypeDef = TypedDict(
|
|
|
611
660
|
"RecordVersion": NotRequired[int],
|
|
612
661
|
},
|
|
613
662
|
)
|
|
663
|
+
DataModelConfigurationUnionTypeDef = Union[
|
|
664
|
+
DataModelConfigurationTypeDef, DataModelConfigurationOutputTypeDef
|
|
665
|
+
]
|
|
614
666
|
DescribeBatchLoadTaskResponseTypeDef = TypedDict(
|
|
615
667
|
"DescribeBatchLoadTaskResponseTypeDef",
|
|
616
668
|
{
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
Metadata-Version: 2.1
|
|
2
2
|
Name: mypy-boto3-timestream-write
|
|
3
|
-
Version: 1.
|
|
4
|
-
Summary: Type annotations for boto3.TimestreamWrite 1.
|
|
3
|
+
Version: 1.35.0
|
|
4
|
+
Summary: Type annotations for boto3.TimestreamWrite 1.35.0 service generated with mypy-boto3-builder 7.26.0
|
|
5
5
|
Home-page: https://github.com/youtype/mypy_boto3_builder
|
|
6
6
|
Author: Vlad Emelianov
|
|
7
7
|
Author-email: vlad.emelianov.nz@gmail.com
|
|
@@ -17,7 +17,6 @@ Classifier: License :: OSI Approved :: MIT License
|
|
|
17
17
|
Classifier: Natural Language :: English
|
|
18
18
|
Classifier: Operating System :: OS Independent
|
|
19
19
|
Classifier: Programming Language :: Python :: 3
|
|
20
|
-
Classifier: Programming Language :: Python :: 3.7
|
|
21
20
|
Classifier: Programming Language :: Python :: 3.8
|
|
22
21
|
Classifier: Programming Language :: Python :: 3.9
|
|
23
22
|
Classifier: Programming Language :: Python :: 3.10
|
|
@@ -26,11 +25,11 @@ Classifier: Programming Language :: Python :: 3.12
|
|
|
26
25
|
Classifier: Programming Language :: Python :: 3.13
|
|
27
26
|
Classifier: Programming Language :: Python :: 3 :: Only
|
|
28
27
|
Classifier: Programming Language :: Python :: Implementation :: CPython
|
|
29
|
-
Classifier: Typing ::
|
|
30
|
-
Requires-Python: >=3.
|
|
28
|
+
Classifier: Typing :: Stubs Only
|
|
29
|
+
Requires-Python: >=3.8
|
|
31
30
|
Description-Content-Type: text/markdown
|
|
32
31
|
License-File: LICENSE
|
|
33
|
-
Requires-Dist: typing-extensions
|
|
32
|
+
Requires-Dist: typing-extensions>=4.1.0; python_version < "3.12"
|
|
34
33
|
|
|
35
34
|
<a id="mypy-boto3-timestream-write"></a>
|
|
36
35
|
|
|
@@ -44,7 +43,7 @@ Requires-Dist: typing-extensions >=4.1.0 ; python_version < "3.12"
|
|
|
44
43
|

|
|
45
44
|
|
|
46
45
|
Type annotations for
|
|
47
|
-
[boto3.TimestreamWrite 1.
|
|
46
|
+
[boto3.TimestreamWrite 1.35.0](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/timestream-write.html#TimestreamWrite)
|
|
48
47
|
service compatible with [VSCode](https://code.visualstudio.com/),
|
|
49
48
|
[PyCharm](https://www.jetbrains.com/pycharm/),
|
|
50
49
|
[Emacs](https://www.gnu.org/software/emacs/),
|
|
@@ -53,7 +52,7 @@ service compatible with [VSCode](https://code.visualstudio.com/),
|
|
|
53
52
|
[pyright](https://github.com/microsoft/pyright) and other tools.
|
|
54
53
|
|
|
55
54
|
Generated by
|
|
56
|
-
[mypy-boto3-builder 7.
|
|
55
|
+
[mypy-boto3-builder 7.26.0](https://github.com/youtype/mypy_boto3_builder).
|
|
57
56
|
|
|
58
57
|
More information can be found on
|
|
59
58
|
[boto3-stubs](https://pypi.org/project/boto3-stubs/) page and in
|
|
@@ -0,0 +1,16 @@
|
|
|
1
|
+
mypy_boto3_timestream_write/__init__.py,sha256=c8v0jdY10_BNx9DE-2biREGy2AVm2CwKZujBOwjjEbg,440
|
|
2
|
+
mypy_boto3_timestream_write/__init__.pyi,sha256=c8v0jdY10_BNx9DE-2biREGy2AVm2CwKZujBOwjjEbg,440
|
|
3
|
+
mypy_boto3_timestream_write/__main__.py,sha256=C6pwrY3lwjqe5jhls4nJh8QC0uhBUv5py9H9P58in7U,950
|
|
4
|
+
mypy_boto3_timestream_write/client.py,sha256=ZzjB_Frq74bTbVB3iOTicXm1huLHWDjFU24jK_NbjAg,15413
|
|
5
|
+
mypy_boto3_timestream_write/client.pyi,sha256=aBJVPDG7BhN7rKSyWpC6mKfTvKJ7FIGUAbf6TtbsZtA,15410
|
|
6
|
+
mypy_boto3_timestream_write/literals.py,sha256=6u1BVU_jIfpABQRudyd5BlTm1tmFCWGG9BStCuf3ubs,9549
|
|
7
|
+
mypy_boto3_timestream_write/literals.pyi,sha256=6u1BVU_jIfpABQRudyd5BlTm1tmFCWGG9BStCuf3ubs,9549
|
|
8
|
+
mypy_boto3_timestream_write/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
9
|
+
mypy_boto3_timestream_write/type_defs.py,sha256=Ji2Q8yrVFMa4zHJQ6udPt7ElW3i3D526VL3WGjD1QO8,20231
|
|
10
|
+
mypy_boto3_timestream_write/type_defs.pyi,sha256=Ji2Q8yrVFMa4zHJQ6udPt7ElW3i3D526VL3WGjD1QO8,20231
|
|
11
|
+
mypy_boto3_timestream_write/version.py,sha256=LGeN8DOPs0tRcJcxZVxCtqSh0iyZT7lFggGF3KkSqhA,61
|
|
12
|
+
mypy_boto3_timestream_write-1.35.0.dist-info/LICENSE,sha256=eQDadZQZ3vRCiNF510ZT4yJV2zgo4000AOBoDRZyvKg,1070
|
|
13
|
+
mypy_boto3_timestream_write-1.35.0.dist-info/METADATA,sha256=4vqpZwcVYHmwGOV1erzG7Qg7qqHmRXdWj-UyuzGWKdQ,12556
|
|
14
|
+
mypy_boto3_timestream_write-1.35.0.dist-info/WHEEL,sha256=HiCZjzuy6Dw0hdX5R3LCFPDmFS4BWl8H-8W39XfmgX4,91
|
|
15
|
+
mypy_boto3_timestream_write-1.35.0.dist-info/top_level.txt,sha256=g0nGBj3bO-9Vwwsr8V_FiQKyD6j_DiiQwWVAEYq4lR8,28
|
|
16
|
+
mypy_boto3_timestream_write-1.35.0.dist-info/RECORD,,
|
|
@@ -1,16 +0,0 @@
|
|
|
1
|
-
mypy_boto3_timestream_write/__init__.py,sha256=mGgSBYQoaIMtLEjaiUW3njIs7f03PM50YNysyBgZ1rY,441
|
|
2
|
-
mypy_boto3_timestream_write/__init__.pyi,sha256=c8v0jdY10_BNx9DE-2biREGy2AVm2CwKZujBOwjjEbg,440
|
|
3
|
-
mypy_boto3_timestream_write/__main__.py,sha256=cKxCFaM0hLb7dStFaL7J0EFZORJbjEWYDq_VRFQyd_g,939
|
|
4
|
-
mypy_boto3_timestream_write/client.py,sha256=m12PJ_ijiPtmzMDvdhi4NK7jE3x8gjpcdA9fo1X3JBA,15384
|
|
5
|
-
mypy_boto3_timestream_write/client.pyi,sha256=opaacxKElS-Mo8XJgNVg1OmewUN3r4ttggccH3mPM5w,15381
|
|
6
|
-
mypy_boto3_timestream_write/literals.py,sha256=kuvlHfJFhObpaombrHf27KCutZ-SZeaho_ScYXnSTM4,9304
|
|
7
|
-
mypy_boto3_timestream_write/literals.pyi,sha256=RZXtLvgFa8nyMCc9IgIG43FI0fbfAi87VZm1f4T-DGE,9302
|
|
8
|
-
mypy_boto3_timestream_write/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
9
|
-
mypy_boto3_timestream_write/type_defs.py,sha256=CfRl5PGiUALEFpExqjuJtG4oZ8MOKRUtvfrw4T3Q2N4,18280
|
|
10
|
-
mypy_boto3_timestream_write/type_defs.pyi,sha256=rU_yqnIB80-ZcXhHDfoXjq8opCBNhWR30uHJ_6t8qcY,18279
|
|
11
|
-
mypy_boto3_timestream_write/version.py,sha256=8Qbu8HOCjrY6O2_gOYfRFBCem64Ka_MtjvbfMGE_iFg,61
|
|
12
|
-
mypy_boto3_timestream_write-1.34.0.dist-info/LICENSE,sha256=v0rThCyxXzUO7rKg6RM8RmmNKO6EvsBx_mdNoXUPxAU,1070
|
|
13
|
-
mypy_boto3_timestream_write-1.34.0.dist-info/METADATA,sha256=viN4IUzAgROLtjMPn2cZ34g7p2OL793E1ZMgPoZoAk8,12603
|
|
14
|
-
mypy_boto3_timestream_write-1.34.0.dist-info/WHEEL,sha256=oiQVh_5PnQM0E3gPdiz09WCNmwiHDMaGer_elqB3coM,92
|
|
15
|
-
mypy_boto3_timestream_write-1.34.0.dist-info/top_level.txt,sha256=g0nGBj3bO-9Vwwsr8V_FiQKyD6j_DiiQwWVAEYq4lR8,28
|
|
16
|
-
mypy_boto3_timestream_write-1.34.0.dist-info/RECORD,,
|
|
File without changes
|