mypy-boto3-s3tables 1.35.74__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-s3tables might be problematic. Click here for more details.

@@ -0,0 +1,39 @@
1
+ """
2
+ Main interface for s3tables service.
3
+
4
+ Usage::
5
+
6
+ ```python
7
+ from boto3.session import Session
8
+ from mypy_boto3_s3tables import (
9
+ Client,
10
+ ListNamespacesPaginator,
11
+ ListTableBucketsPaginator,
12
+ ListTablesPaginator,
13
+ S3TablesClient,
14
+ )
15
+
16
+ session = Session()
17
+ client: S3TablesClient = session.client("s3tables")
18
+
19
+ list_namespaces_paginator: ListNamespacesPaginator = client.get_paginator("list_namespaces")
20
+ list_table_buckets_paginator: ListTableBucketsPaginator = client.get_paginator("list_table_buckets")
21
+ list_tables_paginator: ListTablesPaginator = client.get_paginator("list_tables")
22
+ ```
23
+
24
+ Copyright 2024 Vlad Emelianov
25
+ """
26
+
27
+ from .client import S3TablesClient
28
+ from .paginator import ListNamespacesPaginator, ListTableBucketsPaginator, ListTablesPaginator
29
+
30
+ Client = S3TablesClient
31
+
32
+
33
+ __all__ = (
34
+ "Client",
35
+ "ListNamespacesPaginator",
36
+ "ListTableBucketsPaginator",
37
+ "ListTablesPaginator",
38
+ "S3TablesClient",
39
+ )
@@ -0,0 +1,38 @@
1
+ """
2
+ Main interface for s3tables service.
3
+
4
+ Usage::
5
+
6
+ ```python
7
+ from boto3.session import Session
8
+ from mypy_boto3_s3tables import (
9
+ Client,
10
+ ListNamespacesPaginator,
11
+ ListTableBucketsPaginator,
12
+ ListTablesPaginator,
13
+ S3TablesClient,
14
+ )
15
+
16
+ session = Session()
17
+ client: S3TablesClient = session.client("s3tables")
18
+
19
+ list_namespaces_paginator: ListNamespacesPaginator = client.get_paginator("list_namespaces")
20
+ list_table_buckets_paginator: ListTableBucketsPaginator = client.get_paginator("list_table_buckets")
21
+ list_tables_paginator: ListTablesPaginator = client.get_paginator("list_tables")
22
+ ```
23
+
24
+ Copyright 2024 Vlad Emelianov
25
+ """
26
+
27
+ from .client import S3TablesClient
28
+ from .paginator import ListNamespacesPaginator, ListTableBucketsPaginator, ListTablesPaginator
29
+
30
+ Client = S3TablesClient
31
+
32
+ __all__ = (
33
+ "Client",
34
+ "ListNamespacesPaginator",
35
+ "ListTableBucketsPaginator",
36
+ "ListTablesPaginator",
37
+ "S3TablesClient",
38
+ )
@@ -0,0 +1,42 @@
1
+ """
2
+ Main CLI entrypoint.
3
+
4
+ Copyright 2024 Vlad Emelianov
5
+ """
6
+
7
+ import sys
8
+
9
+
10
+ def print_info() -> None:
11
+ """
12
+ Print package info to stdout.
13
+ """
14
+ print(
15
+ "Type annotations for boto3 S3Tables 1.35.74\n"
16
+ "Version: 1.35.74\n"
17
+ "Builder version: 8.5.0\n"
18
+ "Docs: https://youtype.github.io/boto3_stubs_docs/mypy_boto3_s3tables//\n"
19
+ "Boto3 docs: https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/s3tables.html#s3tables\n"
20
+ "Other services: https://pypi.org/project/boto3-stubs/\n"
21
+ "Changelog: https://github.com/youtype/mypy_boto3_builder/releases"
22
+ )
23
+
24
+
25
+ def print_version() -> None:
26
+ """
27
+ Print package version to stdout.
28
+ """
29
+ print("1.35.74")
30
+
31
+
32
+ def main() -> None:
33
+ """
34
+ Main CLI entrypoint.
35
+ """
36
+ if "--version" in sys.argv:
37
+ return print_version()
38
+ print_info()
39
+
40
+
41
+ if __name__ == "__main__":
42
+ main()
@@ -0,0 +1,429 @@
1
+ """
2
+ Type annotations for s3tables service client.
3
+
4
+ [Open documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_s3tables/client/)
5
+
6
+ Usage::
7
+
8
+ ```python
9
+ from boto3.session import Session
10
+ from mypy_boto3_s3tables.client import S3TablesClient
11
+
12
+ session = Session()
13
+ client: S3TablesClient = session.client("s3tables")
14
+ ```
15
+
16
+ Copyright 2024 Vlad Emelianov
17
+ """
18
+
19
+ import sys
20
+ from typing import Any, Dict, Mapping, Type, overload
21
+
22
+ from botocore.client import BaseClient, ClientMeta
23
+
24
+ from .paginator import ListNamespacesPaginator, ListTableBucketsPaginator, ListTablesPaginator
25
+ from .type_defs import (
26
+ CreateNamespaceRequestRequestTypeDef,
27
+ CreateNamespaceResponseTypeDef,
28
+ CreateTableBucketRequestRequestTypeDef,
29
+ CreateTableBucketResponseTypeDef,
30
+ CreateTableRequestRequestTypeDef,
31
+ CreateTableResponseTypeDef,
32
+ DeleteNamespaceRequestRequestTypeDef,
33
+ DeleteTableBucketPolicyRequestRequestTypeDef,
34
+ DeleteTableBucketRequestRequestTypeDef,
35
+ DeleteTablePolicyRequestRequestTypeDef,
36
+ DeleteTableRequestRequestTypeDef,
37
+ EmptyResponseMetadataTypeDef,
38
+ GetNamespaceRequestRequestTypeDef,
39
+ GetNamespaceResponseTypeDef,
40
+ GetTableBucketMaintenanceConfigurationRequestRequestTypeDef,
41
+ GetTableBucketMaintenanceConfigurationResponseTypeDef,
42
+ GetTableBucketPolicyRequestRequestTypeDef,
43
+ GetTableBucketPolicyResponseTypeDef,
44
+ GetTableBucketRequestRequestTypeDef,
45
+ GetTableBucketResponseTypeDef,
46
+ GetTableMaintenanceConfigurationRequestRequestTypeDef,
47
+ GetTableMaintenanceConfigurationResponseTypeDef,
48
+ GetTableMaintenanceJobStatusRequestRequestTypeDef,
49
+ GetTableMaintenanceJobStatusResponseTypeDef,
50
+ GetTableMetadataLocationRequestRequestTypeDef,
51
+ GetTableMetadataLocationResponseTypeDef,
52
+ GetTablePolicyRequestRequestTypeDef,
53
+ GetTablePolicyResponseTypeDef,
54
+ GetTableRequestRequestTypeDef,
55
+ GetTableResponseTypeDef,
56
+ ListNamespacesRequestRequestTypeDef,
57
+ ListNamespacesResponseTypeDef,
58
+ ListTableBucketsRequestRequestTypeDef,
59
+ ListTableBucketsResponseTypeDef,
60
+ ListTablesRequestRequestTypeDef,
61
+ ListTablesResponseTypeDef,
62
+ PutTableBucketMaintenanceConfigurationRequestRequestTypeDef,
63
+ PutTableBucketPolicyRequestRequestTypeDef,
64
+ PutTableMaintenanceConfigurationRequestRequestTypeDef,
65
+ PutTablePolicyRequestRequestTypeDef,
66
+ RenameTableRequestRequestTypeDef,
67
+ UpdateTableMetadataLocationRequestRequestTypeDef,
68
+ UpdateTableMetadataLocationResponseTypeDef,
69
+ )
70
+
71
+ if sys.version_info >= (3, 12):
72
+ from typing import Literal, Unpack
73
+ else:
74
+ from typing_extensions import Literal, Unpack
75
+
76
+
77
+ __all__ = ("S3TablesClient",)
78
+
79
+
80
+ class BotocoreClientError(Exception):
81
+ MSG_TEMPLATE: str
82
+
83
+ def __init__(self, error_response: Mapping[str, Any], operation_name: str) -> None:
84
+ self.response: Dict[str, Any]
85
+ self.operation_name: str
86
+
87
+
88
+ class Exceptions:
89
+ AccessDeniedException: Type[BotocoreClientError]
90
+ BadRequestException: Type[BotocoreClientError]
91
+ ClientError: Type[BotocoreClientError]
92
+ ConflictException: Type[BotocoreClientError]
93
+ ForbiddenException: Type[BotocoreClientError]
94
+ InternalServerErrorException: Type[BotocoreClientError]
95
+ NotFoundException: Type[BotocoreClientError]
96
+ TooManyRequestsException: Type[BotocoreClientError]
97
+
98
+
99
+ class S3TablesClient(BaseClient):
100
+ """
101
+ [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/s3tables.html#S3Tables.Client)
102
+ [Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_s3tables/client/)
103
+ """
104
+
105
+ meta: ClientMeta
106
+
107
+ @property
108
+ def exceptions(self) -> Exceptions:
109
+ """
110
+ S3TablesClient exceptions.
111
+
112
+ [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/s3tables.html#S3Tables.Client)
113
+ [Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_s3tables/client/#exceptions)
114
+ """
115
+
116
+ def can_paginate(self, operation_name: str) -> bool:
117
+ """
118
+ [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/s3tables/client/can_paginate.html)
119
+ [Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_s3tables/client/#can_paginate)
120
+ """
121
+
122
+ def generate_presigned_url(
123
+ self,
124
+ ClientMethod: str,
125
+ Params: Mapping[str, Any] = ...,
126
+ ExpiresIn: int = 3600,
127
+ HttpMethod: str = ...,
128
+ ) -> str:
129
+ """
130
+ [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/s3tables/client/generate_presigned_url.html)
131
+ [Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_s3tables/client/#generate_presigned_url)
132
+ """
133
+
134
+ def close(self) -> None:
135
+ """
136
+ [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/s3tables/client/close.html)
137
+ [Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_s3tables/client/#close)
138
+ """
139
+
140
+ def create_namespace(
141
+ self, **kwargs: Unpack[CreateNamespaceRequestRequestTypeDef]
142
+ ) -> CreateNamespaceResponseTypeDef:
143
+ """
144
+ Creates a namespace.
145
+
146
+ [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/s3tables/client/create_namespace.html)
147
+ [Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_s3tables/client/#create_namespace)
148
+ """
149
+
150
+ def create_table(
151
+ self, **kwargs: Unpack[CreateTableRequestRequestTypeDef]
152
+ ) -> CreateTableResponseTypeDef:
153
+ """
154
+ Creates a new table associated with the given namespace in a table bucket.
155
+
156
+ [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/s3tables/client/create_table.html)
157
+ [Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_s3tables/client/#create_table)
158
+ """
159
+
160
+ def create_table_bucket(
161
+ self, **kwargs: Unpack[CreateTableBucketRequestRequestTypeDef]
162
+ ) -> CreateTableBucketResponseTypeDef:
163
+ """
164
+ Creates a table bucket.
165
+
166
+ [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/s3tables/client/create_table_bucket.html)
167
+ [Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_s3tables/client/#create_table_bucket)
168
+ """
169
+
170
+ def delete_namespace(
171
+ self, **kwargs: Unpack[DeleteNamespaceRequestRequestTypeDef]
172
+ ) -> EmptyResponseMetadataTypeDef:
173
+ """
174
+ Deletes a namespace.
175
+
176
+ [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/s3tables/client/delete_namespace.html)
177
+ [Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_s3tables/client/#delete_namespace)
178
+ """
179
+
180
+ def delete_table(
181
+ self, **kwargs: Unpack[DeleteTableRequestRequestTypeDef]
182
+ ) -> EmptyResponseMetadataTypeDef:
183
+ """
184
+ Deletes a table.
185
+
186
+ [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/s3tables/client/delete_table.html)
187
+ [Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_s3tables/client/#delete_table)
188
+ """
189
+
190
+ def delete_table_bucket(
191
+ self, **kwargs: Unpack[DeleteTableBucketRequestRequestTypeDef]
192
+ ) -> EmptyResponseMetadataTypeDef:
193
+ """
194
+ Deletes a table bucket.
195
+
196
+ [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/s3tables/client/delete_table_bucket.html)
197
+ [Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_s3tables/client/#delete_table_bucket)
198
+ """
199
+
200
+ def delete_table_bucket_policy(
201
+ self, **kwargs: Unpack[DeleteTableBucketPolicyRequestRequestTypeDef]
202
+ ) -> EmptyResponseMetadataTypeDef:
203
+ """
204
+ Deletes a table bucket policy.
205
+
206
+ [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/s3tables/client/delete_table_bucket_policy.html)
207
+ [Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_s3tables/client/#delete_table_bucket_policy)
208
+ """
209
+
210
+ def delete_table_policy(
211
+ self, **kwargs: Unpack[DeleteTablePolicyRequestRequestTypeDef]
212
+ ) -> EmptyResponseMetadataTypeDef:
213
+ """
214
+ Deletes a table policy.
215
+
216
+ [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/s3tables/client/delete_table_policy.html)
217
+ [Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_s3tables/client/#delete_table_policy)
218
+ """
219
+
220
+ def get_namespace(
221
+ self, **kwargs: Unpack[GetNamespaceRequestRequestTypeDef]
222
+ ) -> GetNamespaceResponseTypeDef:
223
+ """
224
+ Gets details about a namespace.
225
+
226
+ [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/s3tables/client/get_namespace.html)
227
+ [Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_s3tables/client/#get_namespace)
228
+ """
229
+
230
+ def get_table(self, **kwargs: Unpack[GetTableRequestRequestTypeDef]) -> GetTableResponseTypeDef:
231
+ """
232
+ Gets details about a table.
233
+
234
+ [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/s3tables/client/get_table.html)
235
+ [Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_s3tables/client/#get_table)
236
+ """
237
+
238
+ def get_table_bucket(
239
+ self, **kwargs: Unpack[GetTableBucketRequestRequestTypeDef]
240
+ ) -> GetTableBucketResponseTypeDef:
241
+ """
242
+ Gets details on a table bucket.
243
+
244
+ [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/s3tables/client/get_table_bucket.html)
245
+ [Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_s3tables/client/#get_table_bucket)
246
+ """
247
+
248
+ def get_table_bucket_maintenance_configuration(
249
+ self, **kwargs: Unpack[GetTableBucketMaintenanceConfigurationRequestRequestTypeDef]
250
+ ) -> GetTableBucketMaintenanceConfigurationResponseTypeDef:
251
+ """
252
+ Gets details about a maintenance configuration for a given table bucket.
253
+
254
+ [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/s3tables/client/get_table_bucket_maintenance_configuration.html)
255
+ [Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_s3tables/client/#get_table_bucket_maintenance_configuration)
256
+ """
257
+
258
+ def get_table_bucket_policy(
259
+ self, **kwargs: Unpack[GetTableBucketPolicyRequestRequestTypeDef]
260
+ ) -> GetTableBucketPolicyResponseTypeDef:
261
+ """
262
+ Gets details about a table bucket policy.
263
+
264
+ [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/s3tables/client/get_table_bucket_policy.html)
265
+ [Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_s3tables/client/#get_table_bucket_policy)
266
+ """
267
+
268
+ def get_table_maintenance_configuration(
269
+ self, **kwargs: Unpack[GetTableMaintenanceConfigurationRequestRequestTypeDef]
270
+ ) -> GetTableMaintenanceConfigurationResponseTypeDef:
271
+ """
272
+ Gets details about the maintenance configuration of a table.
273
+
274
+ [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/s3tables/client/get_table_maintenance_configuration.html)
275
+ [Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_s3tables/client/#get_table_maintenance_configuration)
276
+ """
277
+
278
+ def get_table_maintenance_job_status(
279
+ self, **kwargs: Unpack[GetTableMaintenanceJobStatusRequestRequestTypeDef]
280
+ ) -> GetTableMaintenanceJobStatusResponseTypeDef:
281
+ """
282
+ Gets the status of a maintenance job for a table.
283
+
284
+ [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/s3tables/client/get_table_maintenance_job_status.html)
285
+ [Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_s3tables/client/#get_table_maintenance_job_status)
286
+ """
287
+
288
+ def get_table_metadata_location(
289
+ self, **kwargs: Unpack[GetTableMetadataLocationRequestRequestTypeDef]
290
+ ) -> GetTableMetadataLocationResponseTypeDef:
291
+ """
292
+ Gets the location of the table metadata.
293
+
294
+ [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/s3tables/client/get_table_metadata_location.html)
295
+ [Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_s3tables/client/#get_table_metadata_location)
296
+ """
297
+
298
+ def get_table_policy(
299
+ self, **kwargs: Unpack[GetTablePolicyRequestRequestTypeDef]
300
+ ) -> GetTablePolicyResponseTypeDef:
301
+ """
302
+ Gets details about a table policy.
303
+
304
+ [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/s3tables/client/get_table_policy.html)
305
+ [Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_s3tables/client/#get_table_policy)
306
+ """
307
+
308
+ def list_namespaces(
309
+ self, **kwargs: Unpack[ListNamespacesRequestRequestTypeDef]
310
+ ) -> ListNamespacesResponseTypeDef:
311
+ """
312
+ Lists the namespaces within a table bucket.
313
+
314
+ [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/s3tables/client/list_namespaces.html)
315
+ [Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_s3tables/client/#list_namespaces)
316
+ """
317
+
318
+ def list_table_buckets(
319
+ self, **kwargs: Unpack[ListTableBucketsRequestRequestTypeDef]
320
+ ) -> ListTableBucketsResponseTypeDef:
321
+ """
322
+ Lists table buckets for your account.
323
+
324
+ [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/s3tables/client/list_table_buckets.html)
325
+ [Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_s3tables/client/#list_table_buckets)
326
+ """
327
+
328
+ def list_tables(
329
+ self, **kwargs: Unpack[ListTablesRequestRequestTypeDef]
330
+ ) -> ListTablesResponseTypeDef:
331
+ """
332
+ List tables in the given table bucket.
333
+
334
+ [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/s3tables/client/list_tables.html)
335
+ [Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_s3tables/client/#list_tables)
336
+ """
337
+
338
+ def put_table_bucket_maintenance_configuration(
339
+ self, **kwargs: Unpack[PutTableBucketMaintenanceConfigurationRequestRequestTypeDef]
340
+ ) -> EmptyResponseMetadataTypeDef:
341
+ """
342
+ Creates a new maintenance configuration or replaces an existing maintenance
343
+ configuration for a table bucket.
344
+
345
+ [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/s3tables/client/put_table_bucket_maintenance_configuration.html)
346
+ [Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_s3tables/client/#put_table_bucket_maintenance_configuration)
347
+ """
348
+
349
+ def put_table_bucket_policy(
350
+ self, **kwargs: Unpack[PutTableBucketPolicyRequestRequestTypeDef]
351
+ ) -> EmptyResponseMetadataTypeDef:
352
+ """
353
+ Creates a new maintenance configuration or replaces an existing table bucket
354
+ policy for a table bucket.
355
+
356
+ [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/s3tables/client/put_table_bucket_policy.html)
357
+ [Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_s3tables/client/#put_table_bucket_policy)
358
+ """
359
+
360
+ def put_table_maintenance_configuration(
361
+ self, **kwargs: Unpack[PutTableMaintenanceConfigurationRequestRequestTypeDef]
362
+ ) -> EmptyResponseMetadataTypeDef:
363
+ """
364
+ Creates a new maintenance configuration or replaces an existing maintenance
365
+ configuration for a table.
366
+
367
+ [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/s3tables/client/put_table_maintenance_configuration.html)
368
+ [Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_s3tables/client/#put_table_maintenance_configuration)
369
+ """
370
+
371
+ def put_table_policy(
372
+ self, **kwargs: Unpack[PutTablePolicyRequestRequestTypeDef]
373
+ ) -> EmptyResponseMetadataTypeDef:
374
+ """
375
+ Creates a new maintenance configuration or replaces an existing table policy
376
+ for a table.
377
+
378
+ [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/s3tables/client/put_table_policy.html)
379
+ [Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_s3tables/client/#put_table_policy)
380
+ """
381
+
382
+ def rename_table(
383
+ self, **kwargs: Unpack[RenameTableRequestRequestTypeDef]
384
+ ) -> EmptyResponseMetadataTypeDef:
385
+ """
386
+ Renames a table or a namespace.
387
+
388
+ [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/s3tables/client/rename_table.html)
389
+ [Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_s3tables/client/#rename_table)
390
+ """
391
+
392
+ def update_table_metadata_location(
393
+ self, **kwargs: Unpack[UpdateTableMetadataLocationRequestRequestTypeDef]
394
+ ) -> UpdateTableMetadataLocationResponseTypeDef:
395
+ """
396
+ Updates the metadata location for a table.
397
+
398
+ [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/s3tables/client/update_table_metadata_location.html)
399
+ [Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_s3tables/client/#update_table_metadata_location)
400
+ """
401
+
402
+ @overload
403
+ def get_paginator(self, operation_name: Literal["list_namespaces"]) -> ListNamespacesPaginator:
404
+ """
405
+ Create a paginator for an operation.
406
+
407
+ [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/s3tables/client/get_paginator.html)
408
+ [Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_s3tables/client/#get_paginator)
409
+ """
410
+
411
+ @overload
412
+ def get_paginator(
413
+ self, operation_name: Literal["list_table_buckets"]
414
+ ) -> ListTableBucketsPaginator:
415
+ """
416
+ Create a paginator for an operation.
417
+
418
+ [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/s3tables/client/get_paginator.html)
419
+ [Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_s3tables/client/#get_paginator)
420
+ """
421
+
422
+ @overload
423
+ def get_paginator(self, operation_name: Literal["list_tables"]) -> ListTablesPaginator:
424
+ """
425
+ Create a paginator for an operation.
426
+
427
+ [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/s3tables/client/get_paginator.html)
428
+ [Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_s3tables/client/#get_paginator)
429
+ """