mypy-boto3-athena 1.38.0__py3-none-any.whl → 1.38.28__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.
- mypy_boto3_athena/__main__.py +4 -4
- mypy_boto3_athena/literals.py +3 -2
- mypy_boto3_athena/literals.pyi +3 -2
- mypy_boto3_athena/type_defs.py +60 -34
- mypy_boto3_athena/type_defs.pyi +53 -30
- mypy_boto3_athena/version.py +1 -1
- {mypy_boto3_athena-1.38.0.dist-info → mypy_boto3_athena-1.38.28.dist-info}/METADATA +5 -5
- mypy_boto3_athena-1.38.28.dist-info/RECORD +18 -0
- {mypy_boto3_athena-1.38.0.dist-info → mypy_boto3_athena-1.38.28.dist-info}/WHEEL +1 -1
- mypy_boto3_athena-1.38.0.dist-info/RECORD +0 -18
- {mypy_boto3_athena-1.38.0.dist-info → mypy_boto3_athena-1.38.28.dist-info}/licenses/LICENSE +0 -0
- {mypy_boto3_athena-1.38.0.dist-info → mypy_boto3_athena-1.38.28.dist-info}/top_level.txt +0 -0
mypy_boto3_athena/__main__.py
CHANGED
|
@@ -12,9 +12,9 @@ def print_info() -> None:
|
|
|
12
12
|
Print package info to stdout.
|
|
13
13
|
"""
|
|
14
14
|
sys.stdout.write(
|
|
15
|
-
"Type annotations for boto3 Athena 1.38.
|
|
16
|
-
"Version: 1.38.
|
|
17
|
-
"Builder version: 8.
|
|
15
|
+
"Type annotations for boto3 Athena 1.38.28\n"
|
|
16
|
+
"Version: 1.38.28\n"
|
|
17
|
+
"Builder version: 8.11.0\n"
|
|
18
18
|
"Docs: https://youtype.github.io/boto3_stubs_docs/mypy_boto3_athena//\n"
|
|
19
19
|
"Boto3 docs: https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/athena.html#athena\n"
|
|
20
20
|
"Other services: https://pypi.org/project/boto3-stubs/\n"
|
|
@@ -26,7 +26,7 @@ def print_version() -> None:
|
|
|
26
26
|
"""
|
|
27
27
|
Print package version to stdout.
|
|
28
28
|
"""
|
|
29
|
-
sys.stdout.write("1.38.
|
|
29
|
+
sys.stdout.write("1.38.28\n")
|
|
30
30
|
|
|
31
31
|
|
|
32
32
|
def main() -> None:
|
mypy_boto3_athena/literals.py
CHANGED
|
@@ -45,6 +45,7 @@ __all__ = (
|
|
|
45
45
|
"NotebookTypeType",
|
|
46
46
|
"PaginatorName",
|
|
47
47
|
"QueryExecutionStateType",
|
|
48
|
+
"QueryResultTypeType",
|
|
48
49
|
"RegionName",
|
|
49
50
|
"ResourceServiceName",
|
|
50
51
|
"S3AclOptionType",
|
|
@@ -112,6 +113,7 @@ ListTableMetadataPaginatorName = Literal["list_table_metadata"]
|
|
|
112
113
|
ListTagsForResourcePaginatorName = Literal["list_tags_for_resource"]
|
|
113
114
|
NotebookTypeType = Literal["IPYNB"]
|
|
114
115
|
QueryExecutionStateType = Literal["CANCELLED", "FAILED", "QUEUED", "RUNNING", "SUCCEEDED"]
|
|
116
|
+
QueryResultTypeType = Literal["DATA_MANIFEST", "DATA_ROWS"]
|
|
115
117
|
S3AclOptionType = Literal["BUCKET_OWNER_FULL_CONTROL"]
|
|
116
118
|
SessionStateType = Literal[
|
|
117
119
|
"BUSY", "CREATED", "CREATING", "DEGRADED", "FAILED", "IDLE", "TERMINATED", "TERMINATING"
|
|
@@ -416,7 +418,6 @@ ServiceName = Literal[
|
|
|
416
418
|
"pipes",
|
|
417
419
|
"polly",
|
|
418
420
|
"pricing",
|
|
419
|
-
"privatenetworks",
|
|
420
421
|
"proton",
|
|
421
422
|
"qapps",
|
|
422
423
|
"qbusiness",
|
|
@@ -477,7 +478,6 @@ ServiceName = Literal[
|
|
|
477
478
|
"signer",
|
|
478
479
|
"simspaceweaver",
|
|
479
480
|
"sms",
|
|
480
|
-
"sms-voice",
|
|
481
481
|
"snow-device-management",
|
|
482
482
|
"snowball",
|
|
483
483
|
"sns",
|
|
@@ -485,6 +485,7 @@ ServiceName = Literal[
|
|
|
485
485
|
"sqs",
|
|
486
486
|
"ssm",
|
|
487
487
|
"ssm-contacts",
|
|
488
|
+
"ssm-guiconnect",
|
|
488
489
|
"ssm-incidents",
|
|
489
490
|
"ssm-quicksetup",
|
|
490
491
|
"ssm-sap",
|
mypy_boto3_athena/literals.pyi
CHANGED
|
@@ -44,6 +44,7 @@ __all__ = (
|
|
|
44
44
|
"NotebookTypeType",
|
|
45
45
|
"PaginatorName",
|
|
46
46
|
"QueryExecutionStateType",
|
|
47
|
+
"QueryResultTypeType",
|
|
47
48
|
"RegionName",
|
|
48
49
|
"ResourceServiceName",
|
|
49
50
|
"S3AclOptionType",
|
|
@@ -110,6 +111,7 @@ ListTableMetadataPaginatorName = Literal["list_table_metadata"]
|
|
|
110
111
|
ListTagsForResourcePaginatorName = Literal["list_tags_for_resource"]
|
|
111
112
|
NotebookTypeType = Literal["IPYNB"]
|
|
112
113
|
QueryExecutionStateType = Literal["CANCELLED", "FAILED", "QUEUED", "RUNNING", "SUCCEEDED"]
|
|
114
|
+
QueryResultTypeType = Literal["DATA_MANIFEST", "DATA_ROWS"]
|
|
113
115
|
S3AclOptionType = Literal["BUCKET_OWNER_FULL_CONTROL"]
|
|
114
116
|
SessionStateType = Literal[
|
|
115
117
|
"BUSY", "CREATED", "CREATING", "DEGRADED", "FAILED", "IDLE", "TERMINATED", "TERMINATING"
|
|
@@ -414,7 +416,6 @@ ServiceName = Literal[
|
|
|
414
416
|
"pipes",
|
|
415
417
|
"polly",
|
|
416
418
|
"pricing",
|
|
417
|
-
"privatenetworks",
|
|
418
419
|
"proton",
|
|
419
420
|
"qapps",
|
|
420
421
|
"qbusiness",
|
|
@@ -475,7 +476,6 @@ ServiceName = Literal[
|
|
|
475
476
|
"signer",
|
|
476
477
|
"simspaceweaver",
|
|
477
478
|
"sms",
|
|
478
|
-
"sms-voice",
|
|
479
479
|
"snow-device-management",
|
|
480
480
|
"snowball",
|
|
481
481
|
"sns",
|
|
@@ -483,6 +483,7 @@ ServiceName = Literal[
|
|
|
483
483
|
"sqs",
|
|
484
484
|
"ssm",
|
|
485
485
|
"ssm-contacts",
|
|
486
|
+
"ssm-guiconnect",
|
|
486
487
|
"ssm-incidents",
|
|
487
488
|
"ssm-quicksetup",
|
|
488
489
|
"ssm-sap",
|
mypy_boto3_athena/type_defs.py
CHANGED
|
@@ -32,6 +32,7 @@ from .literals import (
|
|
|
32
32
|
ExecutorStateType,
|
|
33
33
|
ExecutorTypeType,
|
|
34
34
|
QueryExecutionStateType,
|
|
35
|
+
QueryResultTypeType,
|
|
35
36
|
SessionStateType,
|
|
36
37
|
StatementTypeType,
|
|
37
38
|
WorkGroupStateType,
|
|
@@ -181,6 +182,9 @@ __all__ = (
|
|
|
181
182
|
"ListTagsForResourceOutputTypeDef",
|
|
182
183
|
"ListWorkGroupsInputTypeDef",
|
|
183
184
|
"ListWorkGroupsOutputTypeDef",
|
|
185
|
+
"ManagedQueryResultsConfigurationTypeDef",
|
|
186
|
+
"ManagedQueryResultsConfigurationUpdatesTypeDef",
|
|
187
|
+
"ManagedQueryResultsEncryptionConfigurationTypeDef",
|
|
184
188
|
"NamedQueryTypeDef",
|
|
185
189
|
"NotebookMetadataTypeDef",
|
|
186
190
|
"NotebookSessionSummaryTypeDef",
|
|
@@ -594,6 +598,7 @@ class GetQueryResultsInputTypeDef(TypedDict):
|
|
|
594
598
|
QueryExecutionId: str
|
|
595
599
|
NextToken: NotRequired[str]
|
|
596
600
|
MaxResults: NotRequired[int]
|
|
601
|
+
QueryResultType: NotRequired[QueryResultTypeType]
|
|
597
602
|
|
|
598
603
|
|
|
599
604
|
class GetQueryRuntimeStatisticsInputTypeDef(TypedDict):
|
|
@@ -753,6 +758,10 @@ class ListWorkGroupsInputTypeDef(TypedDict):
|
|
|
753
758
|
MaxResults: NotRequired[int]
|
|
754
759
|
|
|
755
760
|
|
|
761
|
+
class ManagedQueryResultsEncryptionConfigurationTypeDef(TypedDict):
|
|
762
|
+
KmsKey: str
|
|
763
|
+
|
|
764
|
+
|
|
756
765
|
class QueryExecutionContextTypeDef(TypedDict):
|
|
757
766
|
Database: NotRequired[str]
|
|
758
767
|
Catalog: NotRequired[str]
|
|
@@ -1169,6 +1178,7 @@ class ListNotebookMetadataInputTypeDef(TypedDict):
|
|
|
1169
1178
|
|
|
1170
1179
|
class GetQueryResultsInputPaginateTypeDef(TypedDict):
|
|
1171
1180
|
QueryExecutionId: str
|
|
1181
|
+
QueryResultType: NotRequired[QueryResultTypeType]
|
|
1172
1182
|
PaginationConfig: NotRequired[PaginatorConfigTypeDef]
|
|
1173
1183
|
|
|
1174
1184
|
|
|
@@ -1232,6 +1242,17 @@ class ListPreparedStatementsOutputTypeDef(TypedDict):
|
|
|
1232
1242
|
NextToken: NotRequired[str]
|
|
1233
1243
|
|
|
1234
1244
|
|
|
1245
|
+
class ManagedQueryResultsConfigurationTypeDef(TypedDict):
|
|
1246
|
+
Enabled: bool
|
|
1247
|
+
EncryptionConfiguration: NotRequired[ManagedQueryResultsEncryptionConfigurationTypeDef]
|
|
1248
|
+
|
|
1249
|
+
|
|
1250
|
+
class ManagedQueryResultsConfigurationUpdatesTypeDef(TypedDict):
|
|
1251
|
+
Enabled: NotRequired[bool]
|
|
1252
|
+
EncryptionConfiguration: NotRequired[ManagedQueryResultsEncryptionConfigurationTypeDef]
|
|
1253
|
+
RemoveEncryptionConfiguration: NotRequired[bool]
|
|
1254
|
+
|
|
1255
|
+
|
|
1235
1256
|
class QueryExecutionStatisticsTypeDef(TypedDict):
|
|
1236
1257
|
EngineExecutionTimeInMillis: NotRequired[int]
|
|
1237
1258
|
DataScannedInBytes: NotRequired[int]
|
|
@@ -1303,8 +1324,43 @@ class ResultSetTypeDef(TypedDict):
|
|
|
1303
1324
|
ResultSetMetadata: NotRequired[ResultSetMetadataTypeDef]
|
|
1304
1325
|
|
|
1305
1326
|
|
|
1327
|
+
class GetSessionResponseTypeDef(TypedDict):
|
|
1328
|
+
SessionId: str
|
|
1329
|
+
Description: str
|
|
1330
|
+
WorkGroup: str
|
|
1331
|
+
EngineVersion: str
|
|
1332
|
+
EngineConfiguration: EngineConfigurationOutputTypeDef
|
|
1333
|
+
NotebookVersion: str
|
|
1334
|
+
SessionConfiguration: SessionConfigurationTypeDef
|
|
1335
|
+
Status: SessionStatusTypeDef
|
|
1336
|
+
Statistics: SessionStatisticsTypeDef
|
|
1337
|
+
ResponseMetadata: ResponseMetadataTypeDef
|
|
1338
|
+
|
|
1339
|
+
|
|
1340
|
+
class StartSessionRequestTypeDef(TypedDict):
|
|
1341
|
+
WorkGroup: str
|
|
1342
|
+
EngineConfiguration: EngineConfigurationUnionTypeDef
|
|
1343
|
+
Description: NotRequired[str]
|
|
1344
|
+
NotebookVersion: NotRequired[str]
|
|
1345
|
+
SessionIdleTimeoutInMinutes: NotRequired[int]
|
|
1346
|
+
ClientRequestToken: NotRequired[str]
|
|
1347
|
+
|
|
1348
|
+
|
|
1349
|
+
class ListWorkGroupsOutputTypeDef(TypedDict):
|
|
1350
|
+
WorkGroups: List[WorkGroupSummaryTypeDef]
|
|
1351
|
+
ResponseMetadata: ResponseMetadataTypeDef
|
|
1352
|
+
NextToken: NotRequired[str]
|
|
1353
|
+
|
|
1354
|
+
|
|
1355
|
+
class ListSessionsResponseTypeDef(TypedDict):
|
|
1356
|
+
Sessions: List[SessionSummaryTypeDef]
|
|
1357
|
+
ResponseMetadata: ResponseMetadataTypeDef
|
|
1358
|
+
NextToken: NotRequired[str]
|
|
1359
|
+
|
|
1360
|
+
|
|
1306
1361
|
class WorkGroupConfigurationTypeDef(TypedDict):
|
|
1307
1362
|
ResultConfiguration: NotRequired[ResultConfigurationTypeDef]
|
|
1363
|
+
ManagedQueryResultsConfiguration: NotRequired[ManagedQueryResultsConfigurationTypeDef]
|
|
1308
1364
|
EnforceWorkGroupConfiguration: NotRequired[bool]
|
|
1309
1365
|
PublishCloudWatchMetricsEnabled: NotRequired[bool]
|
|
1310
1366
|
BytesScannedCutoffPerQuery: NotRequired[int]
|
|
@@ -1325,6 +1381,9 @@ class WorkGroupConfigurationTypeDef(TypedDict):
|
|
|
1325
1381
|
class WorkGroupConfigurationUpdatesTypeDef(TypedDict):
|
|
1326
1382
|
EnforceWorkGroupConfiguration: NotRequired[bool]
|
|
1327
1383
|
ResultConfigurationUpdates: NotRequired[ResultConfigurationUpdatesTypeDef]
|
|
1384
|
+
ManagedQueryResultsConfigurationUpdates: NotRequired[
|
|
1385
|
+
ManagedQueryResultsConfigurationUpdatesTypeDef
|
|
1386
|
+
]
|
|
1328
1387
|
PublishCloudWatchMetricsEnabled: NotRequired[bool]
|
|
1329
1388
|
BytesScannedCutoffPerQuery: NotRequired[int]
|
|
1330
1389
|
RemoveBytesScannedCutoffPerQuery: NotRequired[bool]
|
|
@@ -1342,40 +1401,6 @@ class WorkGroupConfigurationUpdatesTypeDef(TypedDict):
|
|
|
1342
1401
|
]
|
|
1343
1402
|
|
|
1344
1403
|
|
|
1345
|
-
class GetSessionResponseTypeDef(TypedDict):
|
|
1346
|
-
SessionId: str
|
|
1347
|
-
Description: str
|
|
1348
|
-
WorkGroup: str
|
|
1349
|
-
EngineVersion: str
|
|
1350
|
-
EngineConfiguration: EngineConfigurationOutputTypeDef
|
|
1351
|
-
NotebookVersion: str
|
|
1352
|
-
SessionConfiguration: SessionConfigurationTypeDef
|
|
1353
|
-
Status: SessionStatusTypeDef
|
|
1354
|
-
Statistics: SessionStatisticsTypeDef
|
|
1355
|
-
ResponseMetadata: ResponseMetadataTypeDef
|
|
1356
|
-
|
|
1357
|
-
|
|
1358
|
-
class StartSessionRequestTypeDef(TypedDict):
|
|
1359
|
-
WorkGroup: str
|
|
1360
|
-
EngineConfiguration: EngineConfigurationUnionTypeDef
|
|
1361
|
-
Description: NotRequired[str]
|
|
1362
|
-
NotebookVersion: NotRequired[str]
|
|
1363
|
-
SessionIdleTimeoutInMinutes: NotRequired[int]
|
|
1364
|
-
ClientRequestToken: NotRequired[str]
|
|
1365
|
-
|
|
1366
|
-
|
|
1367
|
-
class ListWorkGroupsOutputTypeDef(TypedDict):
|
|
1368
|
-
WorkGroups: List[WorkGroupSummaryTypeDef]
|
|
1369
|
-
ResponseMetadata: ResponseMetadataTypeDef
|
|
1370
|
-
NextToken: NotRequired[str]
|
|
1371
|
-
|
|
1372
|
-
|
|
1373
|
-
class ListSessionsResponseTypeDef(TypedDict):
|
|
1374
|
-
Sessions: List[SessionSummaryTypeDef]
|
|
1375
|
-
ResponseMetadata: ResponseMetadataTypeDef
|
|
1376
|
-
NextToken: NotRequired[str]
|
|
1377
|
-
|
|
1378
|
-
|
|
1379
1404
|
class QueryRuntimeStatisticsTypeDef(TypedDict):
|
|
1380
1405
|
Timeline: NotRequired[QueryRuntimeStatisticsTimelineTypeDef]
|
|
1381
1406
|
Rows: NotRequired[QueryRuntimeStatisticsRowsTypeDef]
|
|
@@ -1386,6 +1411,7 @@ class QueryExecutionTypeDef(TypedDict):
|
|
|
1386
1411
|
QueryExecutionId: NotRequired[str]
|
|
1387
1412
|
Query: NotRequired[str]
|
|
1388
1413
|
StatementType: NotRequired[StatementTypeType]
|
|
1414
|
+
ManagedQueryResultsConfiguration: NotRequired[ManagedQueryResultsConfigurationTypeDef]
|
|
1389
1415
|
ResultConfiguration: NotRequired[ResultConfigurationTypeDef]
|
|
1390
1416
|
ResultReuseConfiguration: NotRequired[ResultReuseConfigurationTypeDef]
|
|
1391
1417
|
QueryExecutionContext: NotRequired[QueryExecutionContextTypeDef]
|
mypy_boto3_athena/type_defs.pyi
CHANGED
|
@@ -32,6 +32,7 @@ from .literals import (
|
|
|
32
32
|
ExecutorStateType,
|
|
33
33
|
ExecutorTypeType,
|
|
34
34
|
QueryExecutionStateType,
|
|
35
|
+
QueryResultTypeType,
|
|
35
36
|
SessionStateType,
|
|
36
37
|
StatementTypeType,
|
|
37
38
|
WorkGroupStateType,
|
|
@@ -180,6 +181,9 @@ __all__ = (
|
|
|
180
181
|
"ListTagsForResourceOutputTypeDef",
|
|
181
182
|
"ListWorkGroupsInputTypeDef",
|
|
182
183
|
"ListWorkGroupsOutputTypeDef",
|
|
184
|
+
"ManagedQueryResultsConfigurationTypeDef",
|
|
185
|
+
"ManagedQueryResultsConfigurationUpdatesTypeDef",
|
|
186
|
+
"ManagedQueryResultsEncryptionConfigurationTypeDef",
|
|
183
187
|
"NamedQueryTypeDef",
|
|
184
188
|
"NotebookMetadataTypeDef",
|
|
185
189
|
"NotebookSessionSummaryTypeDef",
|
|
@@ -535,6 +539,7 @@ class GetQueryResultsInputTypeDef(TypedDict):
|
|
|
535
539
|
QueryExecutionId: str
|
|
536
540
|
NextToken: NotRequired[str]
|
|
537
541
|
MaxResults: NotRequired[int]
|
|
542
|
+
QueryResultType: NotRequired[QueryResultTypeType]
|
|
538
543
|
|
|
539
544
|
class GetQueryRuntimeStatisticsInputTypeDef(TypedDict):
|
|
540
545
|
QueryExecutionId: str
|
|
@@ -667,6 +672,9 @@ class ListWorkGroupsInputTypeDef(TypedDict):
|
|
|
667
672
|
NextToken: NotRequired[str]
|
|
668
673
|
MaxResults: NotRequired[int]
|
|
669
674
|
|
|
675
|
+
class ManagedQueryResultsEncryptionConfigurationTypeDef(TypedDict):
|
|
676
|
+
KmsKey: str
|
|
677
|
+
|
|
670
678
|
class QueryExecutionContextTypeDef(TypedDict):
|
|
671
679
|
Database: NotRequired[str]
|
|
672
680
|
Catalog: NotRequired[str]
|
|
@@ -1017,6 +1025,7 @@ class ListNotebookMetadataInputTypeDef(TypedDict):
|
|
|
1017
1025
|
|
|
1018
1026
|
class GetQueryResultsInputPaginateTypeDef(TypedDict):
|
|
1019
1027
|
QueryExecutionId: str
|
|
1028
|
+
QueryResultType: NotRequired[QueryResultTypeType]
|
|
1020
1029
|
PaginationConfig: NotRequired[PaginatorConfigTypeDef]
|
|
1021
1030
|
|
|
1022
1031
|
class ListDataCatalogsInputPaginateTypeDef(TypedDict):
|
|
@@ -1069,6 +1078,15 @@ class ListPreparedStatementsOutputTypeDef(TypedDict):
|
|
|
1069
1078
|
ResponseMetadata: ResponseMetadataTypeDef
|
|
1070
1079
|
NextToken: NotRequired[str]
|
|
1071
1080
|
|
|
1081
|
+
class ManagedQueryResultsConfigurationTypeDef(TypedDict):
|
|
1082
|
+
Enabled: bool
|
|
1083
|
+
EncryptionConfiguration: NotRequired[ManagedQueryResultsEncryptionConfigurationTypeDef]
|
|
1084
|
+
|
|
1085
|
+
class ManagedQueryResultsConfigurationUpdatesTypeDef(TypedDict):
|
|
1086
|
+
Enabled: NotRequired[bool]
|
|
1087
|
+
EncryptionConfiguration: NotRequired[ManagedQueryResultsEncryptionConfigurationTypeDef]
|
|
1088
|
+
RemoveEncryptionConfiguration: NotRequired[bool]
|
|
1089
|
+
|
|
1072
1090
|
class QueryExecutionStatisticsTypeDef(TypedDict):
|
|
1073
1091
|
EngineExecutionTimeInMillis: NotRequired[int]
|
|
1074
1092
|
DataScannedInBytes: NotRequired[int]
|
|
@@ -1129,8 +1147,39 @@ class ResultSetTypeDef(TypedDict):
|
|
|
1129
1147
|
Rows: NotRequired[List[RowTypeDef]]
|
|
1130
1148
|
ResultSetMetadata: NotRequired[ResultSetMetadataTypeDef]
|
|
1131
1149
|
|
|
1150
|
+
class GetSessionResponseTypeDef(TypedDict):
|
|
1151
|
+
SessionId: str
|
|
1152
|
+
Description: str
|
|
1153
|
+
WorkGroup: str
|
|
1154
|
+
EngineVersion: str
|
|
1155
|
+
EngineConfiguration: EngineConfigurationOutputTypeDef
|
|
1156
|
+
NotebookVersion: str
|
|
1157
|
+
SessionConfiguration: SessionConfigurationTypeDef
|
|
1158
|
+
Status: SessionStatusTypeDef
|
|
1159
|
+
Statistics: SessionStatisticsTypeDef
|
|
1160
|
+
ResponseMetadata: ResponseMetadataTypeDef
|
|
1161
|
+
|
|
1162
|
+
class StartSessionRequestTypeDef(TypedDict):
|
|
1163
|
+
WorkGroup: str
|
|
1164
|
+
EngineConfiguration: EngineConfigurationUnionTypeDef
|
|
1165
|
+
Description: NotRequired[str]
|
|
1166
|
+
NotebookVersion: NotRequired[str]
|
|
1167
|
+
SessionIdleTimeoutInMinutes: NotRequired[int]
|
|
1168
|
+
ClientRequestToken: NotRequired[str]
|
|
1169
|
+
|
|
1170
|
+
class ListWorkGroupsOutputTypeDef(TypedDict):
|
|
1171
|
+
WorkGroups: List[WorkGroupSummaryTypeDef]
|
|
1172
|
+
ResponseMetadata: ResponseMetadataTypeDef
|
|
1173
|
+
NextToken: NotRequired[str]
|
|
1174
|
+
|
|
1175
|
+
class ListSessionsResponseTypeDef(TypedDict):
|
|
1176
|
+
Sessions: List[SessionSummaryTypeDef]
|
|
1177
|
+
ResponseMetadata: ResponseMetadataTypeDef
|
|
1178
|
+
NextToken: NotRequired[str]
|
|
1179
|
+
|
|
1132
1180
|
class WorkGroupConfigurationTypeDef(TypedDict):
|
|
1133
1181
|
ResultConfiguration: NotRequired[ResultConfigurationTypeDef]
|
|
1182
|
+
ManagedQueryResultsConfiguration: NotRequired[ManagedQueryResultsConfigurationTypeDef]
|
|
1134
1183
|
EnforceWorkGroupConfiguration: NotRequired[bool]
|
|
1135
1184
|
PublishCloudWatchMetricsEnabled: NotRequired[bool]
|
|
1136
1185
|
BytesScannedCutoffPerQuery: NotRequired[int]
|
|
@@ -1150,6 +1199,9 @@ class WorkGroupConfigurationTypeDef(TypedDict):
|
|
|
1150
1199
|
class WorkGroupConfigurationUpdatesTypeDef(TypedDict):
|
|
1151
1200
|
EnforceWorkGroupConfiguration: NotRequired[bool]
|
|
1152
1201
|
ResultConfigurationUpdates: NotRequired[ResultConfigurationUpdatesTypeDef]
|
|
1202
|
+
ManagedQueryResultsConfigurationUpdates: NotRequired[
|
|
1203
|
+
ManagedQueryResultsConfigurationUpdatesTypeDef
|
|
1204
|
+
]
|
|
1153
1205
|
PublishCloudWatchMetricsEnabled: NotRequired[bool]
|
|
1154
1206
|
BytesScannedCutoffPerQuery: NotRequired[int]
|
|
1155
1207
|
RemoveBytesScannedCutoffPerQuery: NotRequired[bool]
|
|
@@ -1166,36 +1218,6 @@ class WorkGroupConfigurationUpdatesTypeDef(TypedDict):
|
|
|
1166
1218
|
QueryResultsS3AccessGrantsConfigurationTypeDef
|
|
1167
1219
|
]
|
|
1168
1220
|
|
|
1169
|
-
class GetSessionResponseTypeDef(TypedDict):
|
|
1170
|
-
SessionId: str
|
|
1171
|
-
Description: str
|
|
1172
|
-
WorkGroup: str
|
|
1173
|
-
EngineVersion: str
|
|
1174
|
-
EngineConfiguration: EngineConfigurationOutputTypeDef
|
|
1175
|
-
NotebookVersion: str
|
|
1176
|
-
SessionConfiguration: SessionConfigurationTypeDef
|
|
1177
|
-
Status: SessionStatusTypeDef
|
|
1178
|
-
Statistics: SessionStatisticsTypeDef
|
|
1179
|
-
ResponseMetadata: ResponseMetadataTypeDef
|
|
1180
|
-
|
|
1181
|
-
class StartSessionRequestTypeDef(TypedDict):
|
|
1182
|
-
WorkGroup: str
|
|
1183
|
-
EngineConfiguration: EngineConfigurationUnionTypeDef
|
|
1184
|
-
Description: NotRequired[str]
|
|
1185
|
-
NotebookVersion: NotRequired[str]
|
|
1186
|
-
SessionIdleTimeoutInMinutes: NotRequired[int]
|
|
1187
|
-
ClientRequestToken: NotRequired[str]
|
|
1188
|
-
|
|
1189
|
-
class ListWorkGroupsOutputTypeDef(TypedDict):
|
|
1190
|
-
WorkGroups: List[WorkGroupSummaryTypeDef]
|
|
1191
|
-
ResponseMetadata: ResponseMetadataTypeDef
|
|
1192
|
-
NextToken: NotRequired[str]
|
|
1193
|
-
|
|
1194
|
-
class ListSessionsResponseTypeDef(TypedDict):
|
|
1195
|
-
Sessions: List[SessionSummaryTypeDef]
|
|
1196
|
-
ResponseMetadata: ResponseMetadataTypeDef
|
|
1197
|
-
NextToken: NotRequired[str]
|
|
1198
|
-
|
|
1199
1221
|
class QueryRuntimeStatisticsTypeDef(TypedDict):
|
|
1200
1222
|
Timeline: NotRequired[QueryRuntimeStatisticsTimelineTypeDef]
|
|
1201
1223
|
Rows: NotRequired[QueryRuntimeStatisticsRowsTypeDef]
|
|
@@ -1205,6 +1227,7 @@ class QueryExecutionTypeDef(TypedDict):
|
|
|
1205
1227
|
QueryExecutionId: NotRequired[str]
|
|
1206
1228
|
Query: NotRequired[str]
|
|
1207
1229
|
StatementType: NotRequired[StatementTypeType]
|
|
1230
|
+
ManagedQueryResultsConfiguration: NotRequired[ManagedQueryResultsConfigurationTypeDef]
|
|
1208
1231
|
ResultConfiguration: NotRequired[ResultConfigurationTypeDef]
|
|
1209
1232
|
ResultReuseConfiguration: NotRequired[ResultReuseConfigurationTypeDef]
|
|
1210
1233
|
QueryExecutionContext: NotRequired[QueryExecutionContextTypeDef]
|
mypy_boto3_athena/version.py
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: mypy-boto3-athena
|
|
3
|
-
Version: 1.38.
|
|
4
|
-
Summary: Type annotations for boto3 Athena 1.38.
|
|
3
|
+
Version: 1.38.28
|
|
4
|
+
Summary: Type annotations for boto3 Athena 1.38.28 service generated with mypy-boto3-builder 8.11.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
|
|
@@ -56,7 +56,7 @@ Dynamic: summary
|
|
|
56
56
|
|
|
57
57
|

|
|
58
58
|
|
|
59
|
-
Type annotations for [boto3 Athena 1.38.
|
|
59
|
+
Type annotations for [boto3 Athena 1.38.28](https://pypi.org/project/boto3/)
|
|
60
60
|
compatible with [VSCode](https://code.visualstudio.com/),
|
|
61
61
|
[PyCharm](https://www.jetbrains.com/pycharm/),
|
|
62
62
|
[Emacs](https://www.gnu.org/software/emacs/),
|
|
@@ -65,7 +65,7 @@ compatible with [VSCode](https://code.visualstudio.com/),
|
|
|
65
65
|
[pyright](https://github.com/microsoft/pyright) and other tools.
|
|
66
66
|
|
|
67
67
|
Generated with
|
|
68
|
-
[mypy-boto3-builder 8.
|
|
68
|
+
[mypy-boto3-builder 8.11.0](https://github.com/youtype/mypy_boto3_builder).
|
|
69
69
|
|
|
70
70
|
More information can be found on
|
|
71
71
|
[boto3-stubs](https://pypi.org/project/boto3-stubs/) page and in
|
|
@@ -118,7 +118,7 @@ You can generate type annotations for `boto3` package locally with
|
|
|
118
118
|
isolation.
|
|
119
119
|
|
|
120
120
|
1. Run mypy-boto3-builder in your package root directory:
|
|
121
|
-
`uvx --with 'boto3==1.38.
|
|
121
|
+
`uvx --with 'boto3==1.38.28' mypy-boto3-builder`
|
|
122
122
|
2. Select `boto3-stubs` AWS SDK.
|
|
123
123
|
3. Add `Athena` service.
|
|
124
124
|
4. Use provided commands to install generated packages.
|
|
@@ -0,0 +1,18 @@
|
|
|
1
|
+
mypy_boto3_athena/__init__.py,sha256=6Tiq4QEexK9VKvsoJmj7dDTBt4HHWcFxGwxWgyxQedo,1962
|
|
2
|
+
mypy_boto3_athena/__init__.pyi,sha256=z_i9jPHFMNCrl1Ju7pVBhfzgBPVDIU4GlsGRKoge4So,1961
|
|
3
|
+
mypy_boto3_athena/__main__.py,sha256=NhzUAhJ3Si-ZqwaovWN_AfLB-SdzwHeHm6PirqdTWzY,980
|
|
4
|
+
mypy_boto3_athena/client.py,sha256=hU6beJTU8v6gjWtmNgg4kz7cQw6EMI1XwWGDmuBEXtg,46941
|
|
5
|
+
mypy_boto3_athena/client.pyi,sha256=MmEP4XP5HG4zpljou8nQIeT0Yp5qQY8XRAANCRvJ6KE,46938
|
|
6
|
+
mypy_boto3_athena/literals.py,sha256=YhGk1cQVkTF5K8G2qssYYtQdVKxQGm7T8MnEJsTN1gw,12723
|
|
7
|
+
mypy_boto3_athena/literals.pyi,sha256=2xr90lOmkkbiGU4YuJCpPq604JSOy1jQh6GIi7iPCfk,12721
|
|
8
|
+
mypy_boto3_athena/paginator.py,sha256=xB_U0CLweCoyDLLQ1gb-YQh8Xyx0ItzkfZYVYbRzsX8,10275
|
|
9
|
+
mypy_boto3_athena/paginator.pyi,sha256=ock3w2liyk4dV3YnX3UUBSKV3WGQwc1q---g-WA_acQ,10253
|
|
10
|
+
mypy_boto3_athena/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
11
|
+
mypy_boto3_athena/type_defs.py,sha256=TOSoNOYBbwPLYmIkio09kf3bFXuEU1JbngGR4459clY,43084
|
|
12
|
+
mypy_boto3_athena/type_defs.pyi,sha256=vPBBRkyop-sbQyu7EyeJ9ZaWK7vMJobhDCnVI1m9sO0,42891
|
|
13
|
+
mypy_boto3_athena/version.py,sha256=qokYTT-GwAn7gr8tnkCv9kB3YWe1TSJZLc8s6ogXnbE,93
|
|
14
|
+
mypy_boto3_athena-1.38.28.dist-info/licenses/LICENSE,sha256=4jNgB8jJbXtUVJkeygwhUQi--6lAG8DIisfE-h_RiUU,1070
|
|
15
|
+
mypy_boto3_athena-1.38.28.dist-info/METADATA,sha256=h8K3FSGLmYhAXr8vIZhhnIQ1fk_QKFy40vlhVV3nDxM,15680
|
|
16
|
+
mypy_boto3_athena-1.38.28.dist-info/WHEEL,sha256=_zCd3N1l69ArxyTb8rzEoP9TpbYXkqRFSNOD5OuxnTs,91
|
|
17
|
+
mypy_boto3_athena-1.38.28.dist-info/top_level.txt,sha256=zhATfWFKeSfNk0lB3FXaQgvfFX_G02p4RuEUJSe6u0Q,18
|
|
18
|
+
mypy_boto3_athena-1.38.28.dist-info/RECORD,,
|
|
@@ -1,18 +0,0 @@
|
|
|
1
|
-
mypy_boto3_athena/__init__.py,sha256=6Tiq4QEexK9VKvsoJmj7dDTBt4HHWcFxGwxWgyxQedo,1962
|
|
2
|
-
mypy_boto3_athena/__init__.pyi,sha256=z_i9jPHFMNCrl1Ju7pVBhfzgBPVDIU4GlsGRKoge4So,1961
|
|
3
|
-
mypy_boto3_athena/__main__.py,sha256=tjvLlVctUxrx8x7W-QCAtq_6LwZuTs_6EMmN5pZ55Rc,977
|
|
4
|
-
mypy_boto3_athena/client.py,sha256=hU6beJTU8v6gjWtmNgg4kz7cQw6EMI1XwWGDmuBEXtg,46941
|
|
5
|
-
mypy_boto3_athena/client.pyi,sha256=MmEP4XP5HG4zpljou8nQIeT0Yp5qQY8XRAANCRvJ6KE,46938
|
|
6
|
-
mypy_boto3_athena/literals.py,sha256=sCB6oN3ztrtkXdt24dQPnYLQDV3ALqPIDzXSHuQ_dEQ,12654
|
|
7
|
-
mypy_boto3_athena/literals.pyi,sha256=xywIKjhQ94hZEJ1Ft5Lq2mAgjPo1oZNFvCWWSf_qDQI,12652
|
|
8
|
-
mypy_boto3_athena/paginator.py,sha256=xB_U0CLweCoyDLLQ1gb-YQh8Xyx0ItzkfZYVYbRzsX8,10275
|
|
9
|
-
mypy_boto3_athena/paginator.pyi,sha256=ock3w2liyk4dV3YnX3UUBSKV3WGQwc1q---g-WA_acQ,10253
|
|
10
|
-
mypy_boto3_athena/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
11
|
-
mypy_boto3_athena/type_defs.py,sha256=mMA1tLkuVmpzog2UAtd_8s_9ZwLnpgLYPRGIpGc3BGc,41993
|
|
12
|
-
mypy_boto3_athena/type_defs.pyi,sha256=XVV54LzNbTL0RqM9VOxcu1IsKyGkpxFRUSM_n5dsjs4,41803
|
|
13
|
-
mypy_boto3_athena/version.py,sha256=chIm161Dw81Gs3vO6CH1PT2nlb-lCUhY_igz_jcxAO8,92
|
|
14
|
-
mypy_boto3_athena-1.38.0.dist-info/licenses/LICENSE,sha256=4jNgB8jJbXtUVJkeygwhUQi--6lAG8DIisfE-h_RiUU,1070
|
|
15
|
-
mypy_boto3_athena-1.38.0.dist-info/METADATA,sha256=y9Ll_3f7NDkIPpq0B3mxQxFq280Jc6qM7rIoaOkiggA,15676
|
|
16
|
-
mypy_boto3_athena-1.38.0.dist-info/WHEEL,sha256=pxyMxgL8-pra_rKaQ4drOZAegBVuX-G_4nRHjjgWbmo,91
|
|
17
|
-
mypy_boto3_athena-1.38.0.dist-info/top_level.txt,sha256=zhATfWFKeSfNk0lB3FXaQgvfFX_G02p4RuEUJSe6u0Q,18
|
|
18
|
-
mypy_boto3_athena-1.38.0.dist-info/RECORD,,
|
|
File without changes
|
|
File without changes
|