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