mypy-boto3-timestream-write 1.19.9__py3-none-any.whl → 1.41.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.
@@ -1,21 +1,24 @@
1
1
  """
2
2
  Main interface for timestream-write service.
3
3
 
4
+ [Documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_timestream_write/)
5
+
6
+ Copyright 2025 Vlad Emelianov
7
+
4
8
  Usage::
5
9
 
6
10
  ```python
7
- import boto3
11
+ from boto3.session import Session
8
12
  from mypy_boto3_timestream_write import (
9
13
  Client,
10
14
  TimestreamWriteClient,
11
15
  )
12
16
 
13
- session = boto3.Session()
14
-
15
- client: TimestreamWriteClient = boto3.client("timestream-write")
16
- session_client: TimestreamWriteClient = session.client("timestream-write")
17
+ session = Session()
18
+ client: TimestreamWriteClient = session.client("timestream-write")
17
19
  ```
18
20
  """
21
+
19
22
  from .client import TimestreamWriteClient
20
23
 
21
24
  Client = TimestreamWriteClient
@@ -1,21 +1,24 @@
1
1
  """
2
2
  Main interface for timestream-write service.
3
3
 
4
+ [Documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_timestream_write/)
5
+
6
+ Copyright 2025 Vlad Emelianov
7
+
4
8
  Usage::
5
9
 
6
10
  ```python
7
- import boto3
11
+ from boto3.session import Session
8
12
  from mypy_boto3_timestream_write import (
9
13
  Client,
10
14
  TimestreamWriteClient,
11
15
  )
12
16
 
13
- session = boto3.Session()
14
-
15
- client: TimestreamWriteClient = boto3.client("timestream-write")
16
- session_client: TimestreamWriteClient = session.client("timestream-write")
17
+ session = Session()
18
+ client: TimestreamWriteClient = session.client("timestream-write")
17
19
  ```
18
20
  """
21
+
19
22
  from .client import TimestreamWriteClient
20
23
 
21
24
  Client = TimestreamWriteClient
@@ -1,6 +1,9 @@
1
1
  """
2
2
  Main CLI entrypoint.
3
+
4
+ Copyright 2025 Vlad Emelianov
3
5
  """
6
+
4
7
  import sys
5
8
 
6
9
 
@@ -8,14 +11,14 @@ def print_info() -> None:
8
11
  """
9
12
  Print package info to stdout.
10
13
  """
11
- print(
12
- "Type annotations for boto3.TimestreamWrite 1.19.9\n"
13
- "Version: 1.19.9\n"
14
- "Builder version: 6.0.2\n"
15
- "Docs: https://pypi.org/project/mypy-boto3-timestream-write/\n"
16
- "Boto3 docs: https://boto3.amazonaws.com/v1/documentation/api/1.19.9/reference/services/timestream-write.html#TimestreamWrite\n"
14
+ sys.stdout.write(
15
+ "Type annotations for boto3 TimestreamWrite 1.41.0\n"
16
+ "Version: 1.41.0\n"
17
+ "Builder version: 8.12.0\n"
18
+ "Docs: https://youtype.github.io/boto3_stubs_docs/mypy_boto3_timestream_write//\n"
19
+ "Boto3 docs: https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/timestream-write.html#timestreamwrite\n"
17
20
  "Other services: https://pypi.org/project/boto3-stubs/\n"
18
- "Changelog: https://github.com/vemel/mypy_boto3_builder/releases"
21
+ "Changelog: https://github.com/youtype/mypy_boto3_builder/releases\n"
19
22
  )
20
23
 
21
24
 
@@ -23,7 +26,7 @@ def print_version() -> None:
23
26
  """
24
27
  Print package version to stdout.
25
28
  """
26
- print("1.19.9")
29
+ sys.stdout.write("1.41.0\n")
27
30
 
28
31
 
29
32
  def main() -> None:
@@ -31,7 +34,8 @@ def main() -> None:
31
34
  Main CLI entrypoint.
32
35
  """
33
36
  if "--version" in sys.argv:
34
- return print_version()
37
+ print_version()
38
+ return
35
39
  print_info()
36
40
 
37
41
 
@@ -1,65 +1,93 @@
1
1
  """
2
- Type annotations for timestream-write service client.
2
+ Type annotations for timestream-write service Client.
3
3
 
4
- [Open documentation](https://vemel.github.io/boto3_stubs_docs/mypy_boto3_timestream_write/client.html)
4
+ [Documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_timestream_write/client/)
5
+
6
+ Copyright 2025 Vlad Emelianov
5
7
 
6
8
  Usage::
7
9
 
8
10
  ```python
9
- import boto3
10
- from mypy_boto3_timestream_write import TimestreamWriteClient
11
+ from boto3.session import Session
12
+ from mypy_boto3_timestream_write.client import TimestreamWriteClient
11
13
 
12
- client: TimestreamWriteClient = boto3.client("timestream-write")
14
+ session = Session()
15
+ client: TimestreamWriteClient = session.client("timestream-write")
13
16
  ```
14
17
  """
15
- from typing import Any, Dict, Mapping, Sequence, Type
18
+
19
+ from __future__ import annotations
20
+
21
+ import sys
22
+ from collections.abc import Mapping
23
+ from typing import Any
16
24
 
17
25
  from botocore.client import BaseClient, ClientMeta
26
+ from botocore.errorfactory import BaseClientExceptions
27
+ from botocore.exceptions import ClientError as BotocoreClientError
18
28
 
19
29
  from .type_defs import (
30
+ CreateBatchLoadTaskRequestTypeDef,
31
+ CreateBatchLoadTaskResponseTypeDef,
32
+ CreateDatabaseRequestTypeDef,
20
33
  CreateDatabaseResponseTypeDef,
34
+ CreateTableRequestTypeDef,
21
35
  CreateTableResponseTypeDef,
36
+ DeleteDatabaseRequestTypeDef,
37
+ DeleteTableRequestTypeDef,
38
+ DescribeBatchLoadTaskRequestTypeDef,
39
+ DescribeBatchLoadTaskResponseTypeDef,
40
+ DescribeDatabaseRequestTypeDef,
22
41
  DescribeDatabaseResponseTypeDef,
23
42
  DescribeEndpointsResponseTypeDef,
43
+ DescribeTableRequestTypeDef,
24
44
  DescribeTableResponseTypeDef,
45
+ EmptyResponseMetadataTypeDef,
46
+ ListBatchLoadTasksRequestTypeDef,
47
+ ListBatchLoadTasksResponseTypeDef,
48
+ ListDatabasesRequestTypeDef,
25
49
  ListDatabasesResponseTypeDef,
50
+ ListTablesRequestTypeDef,
26
51
  ListTablesResponseTypeDef,
52
+ ListTagsForResourceRequestTypeDef,
27
53
  ListTagsForResourceResponseTypeDef,
28
- RecordTypeDef,
29
- RetentionPropertiesTypeDef,
30
- TagTypeDef,
54
+ ResumeBatchLoadTaskRequestTypeDef,
55
+ TagResourceRequestTypeDef,
56
+ UntagResourceRequestTypeDef,
57
+ UpdateDatabaseRequestTypeDef,
31
58
  UpdateDatabaseResponseTypeDef,
59
+ UpdateTableRequestTypeDef,
32
60
  UpdateTableResponseTypeDef,
61
+ WriteRecordsRequestTypeDef,
62
+ WriteRecordsResponseTypeDef,
33
63
  )
34
64
 
35
- __all__ = ("TimestreamWriteClient",)
36
-
65
+ if sys.version_info >= (3, 12):
66
+ from typing import Unpack
67
+ else:
68
+ from typing_extensions import Unpack
37
69
 
38
- class BotocoreClientError(BaseException):
39
- MSG_TEMPLATE: str
40
70
 
41
- def __init__(self, error_response: Mapping[str, Any], operation_name: str) -> None:
42
- self.response: Dict[str, Any]
43
- self.operation_name: str
71
+ __all__ = ("TimestreamWriteClient",)
44
72
 
45
73
 
46
- class Exceptions:
47
- AccessDeniedException: Type[BotocoreClientError]
48
- ClientError: Type[BotocoreClientError]
49
- ConflictException: Type[BotocoreClientError]
50
- InternalServerException: Type[BotocoreClientError]
51
- InvalidEndpointException: Type[BotocoreClientError]
52
- RejectedRecordsException: Type[BotocoreClientError]
53
- ResourceNotFoundException: Type[BotocoreClientError]
54
- ServiceQuotaExceededException: Type[BotocoreClientError]
55
- ThrottlingException: Type[BotocoreClientError]
56
- ValidationException: Type[BotocoreClientError]
74
+ class Exceptions(BaseClientExceptions):
75
+ AccessDeniedException: type[BotocoreClientError]
76
+ ClientError: type[BotocoreClientError]
77
+ ConflictException: type[BotocoreClientError]
78
+ InternalServerException: type[BotocoreClientError]
79
+ InvalidEndpointException: type[BotocoreClientError]
80
+ RejectedRecordsException: type[BotocoreClientError]
81
+ ResourceNotFoundException: type[BotocoreClientError]
82
+ ServiceQuotaExceededException: type[BotocoreClientError]
83
+ ThrottlingException: type[BotocoreClientError]
84
+ ValidationException: type[BotocoreClientError]
57
85
 
58
86
 
59
87
  class TimestreamWriteClient(BaseClient):
60
88
  """
61
- [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/1.19.9/reference/services/timestream-write.html#TimestreamWrite.Client)
62
- [Show boto3-stubs documentation](https://vemel.github.io/boto3_stubs_docs/mypy_boto3_timestream_write/client.html)
89
+ [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/timestream-write.html#TimestreamWrite.Client)
90
+ [Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_timestream_write/client/)
63
91
  """
64
92
 
65
93
  meta: ClientMeta
@@ -68,180 +96,212 @@ class TimestreamWriteClient(BaseClient):
68
96
  def exceptions(self) -> Exceptions:
69
97
  """
70
98
  TimestreamWriteClient exceptions.
99
+
100
+ [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/timestream-write.html#TimestreamWrite.Client)
101
+ [Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_timestream_write/client/#exceptions)
71
102
  """
72
103
 
73
104
  def can_paginate(self, operation_name: str) -> bool:
74
105
  """
75
- Check if an operation can be paginated.
106
+ [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/timestream-write/client/can_paginate.html)
107
+ [Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_timestream_write/client/#can_paginate)
108
+ """
109
+
110
+ def generate_presigned_url(
111
+ self,
112
+ ClientMethod: str,
113
+ Params: Mapping[str, Any] = ...,
114
+ ExpiresIn: int = 3600,
115
+ HttpMethod: str = ...,
116
+ ) -> str:
117
+ """
118
+ [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/timestream-write/client/generate_presigned_url.html)
119
+ [Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_timestream_write/client/#generate_presigned_url)
120
+ """
121
+
122
+ def create_batch_load_task(
123
+ self, **kwargs: Unpack[CreateBatchLoadTaskRequestTypeDef]
124
+ ) -> CreateBatchLoadTaskResponseTypeDef:
125
+ """
126
+ Creates a new Timestream batch load task.
76
127
 
77
- [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/1.19.9/reference/services/timestream-write.html#TimestreamWrite.Client.can_paginate)
78
- [Show boto3-stubs documentation](https://vemel.github.io/boto3_stubs_docs/mypy_boto3_timestream_write/client.html#can_paginate)
128
+ [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/timestream-write/client/create_batch_load_task.html)
129
+ [Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_timestream_write/client/#create_batch_load_task)
79
130
  """
80
131
 
81
132
  def create_database(
82
- self, *, DatabaseName: str, KmsKeyId: str = ..., Tags: Sequence["TagTypeDef"] = ...
133
+ self, **kwargs: Unpack[CreateDatabaseRequestTypeDef]
83
134
  ) -> CreateDatabaseResponseTypeDef:
84
135
  """
85
136
  Creates a new Timestream database.
86
137
 
87
- [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/1.19.9/reference/services/timestream-write.html#TimestreamWrite.Client.create_database)
88
- [Show boto3-stubs documentation](https://vemel.github.io/boto3_stubs_docs/mypy_boto3_timestream_write/client.html#create_database)
138
+ [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/timestream-write/client/create_database.html)
139
+ [Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_timestream_write/client/#create_database)
89
140
  """
90
141
 
91
142
  def create_table(
92
- self,
93
- *,
94
- DatabaseName: str,
95
- TableName: str,
96
- RetentionProperties: "RetentionPropertiesTypeDef" = ...,
97
- Tags: Sequence["TagTypeDef"] = ...
143
+ self, **kwargs: Unpack[CreateTableRequestTypeDef]
98
144
  ) -> CreateTableResponseTypeDef:
99
145
  """
100
- The CreateTable operation adds a new table to an existing database in your
101
- account.
146
+ Adds a new table to an existing database in your account.
102
147
 
103
- [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/1.19.9/reference/services/timestream-write.html#TimestreamWrite.Client.create_table)
104
- [Show boto3-stubs documentation](https://vemel.github.io/boto3_stubs_docs/mypy_boto3_timestream_write/client.html#create_table)
148
+ [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/timestream-write/client/create_table.html)
149
+ [Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_timestream_write/client/#create_table)
105
150
  """
106
151
 
107
- def delete_database(self, *, DatabaseName: str) -> None:
152
+ def delete_database(
153
+ self, **kwargs: Unpack[DeleteDatabaseRequestTypeDef]
154
+ ) -> EmptyResponseMetadataTypeDef:
108
155
  """
109
156
  Deletes a given Timestream database.
110
157
 
111
- [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/1.19.9/reference/services/timestream-write.html#TimestreamWrite.Client.delete_database)
112
- [Show boto3-stubs documentation](https://vemel.github.io/boto3_stubs_docs/mypy_boto3_timestream_write/client.html#delete_database)
158
+ [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/timestream-write/client/delete_database.html)
159
+ [Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_timestream_write/client/#delete_database)
113
160
  """
114
161
 
115
- def delete_table(self, *, DatabaseName: str, TableName: str) -> None:
162
+ def delete_table(
163
+ self, **kwargs: Unpack[DeleteTableRequestTypeDef]
164
+ ) -> EmptyResponseMetadataTypeDef:
116
165
  """
117
166
  Deletes a given Timestream table.
118
167
 
119
- [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/1.19.9/reference/services/timestream-write.html#TimestreamWrite.Client.delete_table)
120
- [Show boto3-stubs documentation](https://vemel.github.io/boto3_stubs_docs/mypy_boto3_timestream_write/client.html#delete_table)
168
+ [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/timestream-write/client/delete_table.html)
169
+ [Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_timestream_write/client/#delete_table)
170
+ """
171
+
172
+ def describe_batch_load_task(
173
+ self, **kwargs: Unpack[DescribeBatchLoadTaskRequestTypeDef]
174
+ ) -> DescribeBatchLoadTaskResponseTypeDef:
175
+ """
176
+ Returns information about the batch load task, including configurations,
177
+ mappings, progress, and other details.
178
+
179
+ [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/timestream-write/client/describe_batch_load_task.html)
180
+ [Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_timestream_write/client/#describe_batch_load_task)
121
181
  """
122
182
 
123
- def describe_database(self, *, DatabaseName: str) -> DescribeDatabaseResponseTypeDef:
183
+ def describe_database(
184
+ self, **kwargs: Unpack[DescribeDatabaseRequestTypeDef]
185
+ ) -> DescribeDatabaseResponseTypeDef:
124
186
  """
125
187
  Returns information about the database, including the database name, time that
126
188
  the database was created, and the total number of tables found within the
127
189
  database.
128
190
 
129
- [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/1.19.9/reference/services/timestream-write.html#TimestreamWrite.Client.describe_database)
130
- [Show boto3-stubs documentation](https://vemel.github.io/boto3_stubs_docs/mypy_boto3_timestream_write/client.html#describe_database)
191
+ [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/timestream-write/client/describe_database.html)
192
+ [Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_timestream_write/client/#describe_database)
131
193
  """
132
194
 
133
195
  def describe_endpoints(self) -> DescribeEndpointsResponseTypeDef:
134
196
  """
135
- DescribeEndpoints returns a list of available endpoints to make Timestream API
136
- calls against.
197
+ Returns a list of available endpoints to make Timestream API calls against.
137
198
 
138
- [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/1.19.9/reference/services/timestream-write.html#TimestreamWrite.Client.describe_endpoints)
139
- [Show boto3-stubs documentation](https://vemel.github.io/boto3_stubs_docs/mypy_boto3_timestream_write/client.html#describe_endpoints)
199
+ [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/timestream-write/client/describe_endpoints.html)
200
+ [Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_timestream_write/client/#describe_endpoints)
140
201
  """
141
202
 
142
- def describe_table(self, *, DatabaseName: str, TableName: str) -> DescribeTableResponseTypeDef:
203
+ def describe_table(
204
+ self, **kwargs: Unpack[DescribeTableRequestTypeDef]
205
+ ) -> DescribeTableResponseTypeDef:
143
206
  """
144
207
  Returns information about the table, including the table name, database name,
145
208
  retention duration of the memory store and the magnetic store.
146
209
 
147
- [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/1.19.9/reference/services/timestream-write.html#TimestreamWrite.Client.describe_table)
148
- [Show boto3-stubs documentation](https://vemel.github.io/boto3_stubs_docs/mypy_boto3_timestream_write/client.html#describe_table)
210
+ [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/timestream-write/client/describe_table.html)
211
+ [Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_timestream_write/client/#describe_table)
149
212
  """
150
213
 
151
- def generate_presigned_url(
152
- self,
153
- ClientMethod: str,
154
- Params: Mapping[str, Any] = ...,
155
- ExpiresIn: int = 3600,
156
- HttpMethod: str = ...,
157
- ) -> str:
214
+ def list_batch_load_tasks(
215
+ self, **kwargs: Unpack[ListBatchLoadTasksRequestTypeDef]
216
+ ) -> ListBatchLoadTasksResponseTypeDef:
158
217
  """
159
- Generate a presigned url given a client, its method, and arguments.
218
+ Provides a list of batch load tasks, along with the name, status, when the task
219
+ is resumable until, and other details.
160
220
 
161
- [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/1.19.9/reference/services/timestream-write.html#TimestreamWrite.Client.generate_presigned_url)
162
- [Show boto3-stubs documentation](https://vemel.github.io/boto3_stubs_docs/mypy_boto3_timestream_write/client.html#generate_presigned_url)
221
+ [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/timestream-write/client/list_batch_load_tasks.html)
222
+ [Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_timestream_write/client/#list_batch_load_tasks)
163
223
  """
164
224
 
165
225
  def list_databases(
166
- self, *, NextToken: str = ..., MaxResults: int = ...
226
+ self, **kwargs: Unpack[ListDatabasesRequestTypeDef]
167
227
  ) -> ListDatabasesResponseTypeDef:
168
228
  """
169
229
  Returns a list of your Timestream databases.
170
230
 
171
- [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/1.19.9/reference/services/timestream-write.html#TimestreamWrite.Client.list_databases)
172
- [Show boto3-stubs documentation](https://vemel.github.io/boto3_stubs_docs/mypy_boto3_timestream_write/client.html#list_databases)
231
+ [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/timestream-write/client/list_databases.html)
232
+ [Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_timestream_write/client/#list_databases)
173
233
  """
174
234
 
175
- def list_tables(
176
- self, *, DatabaseName: str = ..., NextToken: str = ..., MaxResults: int = ...
177
- ) -> ListTablesResponseTypeDef:
235
+ def list_tables(self, **kwargs: Unpack[ListTablesRequestTypeDef]) -> ListTablesResponseTypeDef:
178
236
  """
179
- A list of tables, along with the name, status and retention properties of each
180
- table.
237
+ Provides a list of tables, along with the name, status, and retention
238
+ properties of each table.
181
239
 
182
- [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/1.19.9/reference/services/timestream-write.html#TimestreamWrite.Client.list_tables)
183
- [Show boto3-stubs documentation](https://vemel.github.io/boto3_stubs_docs/mypy_boto3_timestream_write/client.html#list_tables)
240
+ [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/timestream-write/client/list_tables.html)
241
+ [Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_timestream_write/client/#list_tables)
184
242
  """
185
243
 
186
- def list_tags_for_resource(self, *, ResourceARN: str) -> ListTagsForResourceResponseTypeDef:
244
+ def list_tags_for_resource(
245
+ self, **kwargs: Unpack[ListTagsForResourceRequestTypeDef]
246
+ ) -> ListTagsForResourceResponseTypeDef:
187
247
  """
188
- List all tags on a Timestream resource.
248
+ Lists all tags on a Timestream resource.
189
249
 
190
- [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/1.19.9/reference/services/timestream-write.html#TimestreamWrite.Client.list_tags_for_resource)
191
- [Show boto3-stubs documentation](https://vemel.github.io/boto3_stubs_docs/mypy_boto3_timestream_write/client.html#list_tags_for_resource)
250
+ [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/timestream-write/client/list_tags_for_resource.html)
251
+ [Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_timestream_write/client/#list_tags_for_resource)
252
+ """
253
+
254
+ def resume_batch_load_task(
255
+ self, **kwargs: Unpack[ResumeBatchLoadTaskRequestTypeDef]
256
+ ) -> dict[str, Any]:
257
+ """
258
+ [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/timestream-write/client/resume_batch_load_task.html)
259
+ [Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_timestream_write/client/#resume_batch_load_task)
192
260
  """
193
261
 
194
- def tag_resource(self, *, ResourceARN: str, Tags: Sequence["TagTypeDef"]) -> Dict[str, Any]:
262
+ def tag_resource(self, **kwargs: Unpack[TagResourceRequestTypeDef]) -> dict[str, Any]:
195
263
  """
196
- Associate a set of tags with a Timestream resource.
264
+ Associates a set of tags with a Timestream resource.
197
265
 
198
- [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/1.19.9/reference/services/timestream-write.html#TimestreamWrite.Client.tag_resource)
199
- [Show boto3-stubs documentation](https://vemel.github.io/boto3_stubs_docs/mypy_boto3_timestream_write/client.html#tag_resource)
266
+ [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/timestream-write/client/tag_resource.html)
267
+ [Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_timestream_write/client/#tag_resource)
200
268
  """
201
269
 
202
- def untag_resource(self, *, ResourceARN: str, TagKeys: Sequence[str]) -> Dict[str, Any]:
270
+ def untag_resource(self, **kwargs: Unpack[UntagResourceRequestTypeDef]) -> dict[str, Any]:
203
271
  """
204
272
  Removes the association of tags from a Timestream resource.
205
273
 
206
- [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/1.19.9/reference/services/timestream-write.html#TimestreamWrite.Client.untag_resource)
207
- [Show boto3-stubs documentation](https://vemel.github.io/boto3_stubs_docs/mypy_boto3_timestream_write/client.html#untag_resource)
274
+ [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/timestream-write/client/untag_resource.html)
275
+ [Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_timestream_write/client/#untag_resource)
208
276
  """
209
277
 
210
- def update_database(self, *, DatabaseName: str, KmsKeyId: str) -> UpdateDatabaseResponseTypeDef:
278
+ def update_database(
279
+ self, **kwargs: Unpack[UpdateDatabaseRequestTypeDef]
280
+ ) -> UpdateDatabaseResponseTypeDef:
211
281
  """
212
282
  Modifies the KMS key for an existing database.
213
283
 
214
- [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/1.19.9/reference/services/timestream-write.html#TimestreamWrite.Client.update_database)
215
- [Show boto3-stubs documentation](https://vemel.github.io/boto3_stubs_docs/mypy_boto3_timestream_write/client.html#update_database)
284
+ [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/timestream-write/client/update_database.html)
285
+ [Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_timestream_write/client/#update_database)
216
286
  """
217
287
 
218
288
  def update_table(
219
- self,
220
- *,
221
- DatabaseName: str,
222
- TableName: str,
223
- RetentionProperties: "RetentionPropertiesTypeDef"
289
+ self, **kwargs: Unpack[UpdateTableRequestTypeDef]
224
290
  ) -> UpdateTableResponseTypeDef:
225
291
  """
226
292
  Modifies the retention duration of the memory store and magnetic store for your
227
293
  Timestream table.
228
294
 
229
- [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/1.19.9/reference/services/timestream-write.html#TimestreamWrite.Client.update_table)
230
- [Show boto3-stubs documentation](https://vemel.github.io/boto3_stubs_docs/mypy_boto3_timestream_write/client.html#update_table)
295
+ [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/timestream-write/client/update_table.html)
296
+ [Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_timestream_write/client/#update_table)
231
297
  """
232
298
 
233
299
  def write_records(
234
- self,
235
- *,
236
- DatabaseName: str,
237
- TableName: str,
238
- Records: Sequence["RecordTypeDef"],
239
- CommonAttributes: "RecordTypeDef" = ...
240
- ) -> None:
241
- """
242
- The WriteRecords operation enables you to write your time series data into
243
- Timestream.
244
-
245
- [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/1.19.9/reference/services/timestream-write.html#TimestreamWrite.Client.write_records)
246
- [Show boto3-stubs documentation](https://vemel.github.io/boto3_stubs_docs/mypy_boto3_timestream_write/client.html#write_records)
300
+ self, **kwargs: Unpack[WriteRecordsRequestTypeDef]
301
+ ) -> WriteRecordsResponseTypeDef:
302
+ """
303
+ Enables you to write your time-series data into Timestream.
304
+
305
+ [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/timestream-write/client/write_records.html)
306
+ [Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_timestream_write/client/#write_records)
247
307
  """