mypy-boto3-athena 1.41.0__py3-none-any.whl → 1.41.2__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 +3 -3
- mypy_boto3_athena/client.py +24 -0
- mypy_boto3_athena/client.pyi +24 -0
- mypy_boto3_athena/literals.py +1 -0
- mypy_boto3_athena/literals.pyi +1 -0
- mypy_boto3_athena/type_defs.py +222 -88
- mypy_boto3_athena/type_defs.pyi +198 -79
- mypy_boto3_athena/version.py +1 -1
- {mypy_boto3_athena-1.41.0.dist-info → mypy_boto3_athena-1.41.2.dist-info}/METADATA +4 -4
- mypy_boto3_athena-1.41.2.dist-info/RECORD +18 -0
- mypy_boto3_athena-1.41.0.dist-info/RECORD +0 -18
- {mypy_boto3_athena-1.41.0.dist-info → mypy_boto3_athena-1.41.2.dist-info}/WHEEL +0 -0
- {mypy_boto3_athena-1.41.0.dist-info → mypy_boto3_athena-1.41.2.dist-info}/licenses/LICENSE +0 -0
- {mypy_boto3_athena-1.41.0.dist-info → mypy_boto3_athena-1.41.2.dist-info}/top_level.txt +0 -0
mypy_boto3_athena/__main__.py
CHANGED
|
@@ -12,8 +12,8 @@ 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.41.
|
|
16
|
-
"Version: 1.41.
|
|
15
|
+
"Type annotations for boto3 Athena 1.41.2\n"
|
|
16
|
+
"Version: 1.41.2\n"
|
|
17
17
|
"Builder version: 8.12.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"
|
|
@@ -26,7 +26,7 @@ def print_version() -> None:
|
|
|
26
26
|
"""
|
|
27
27
|
Print package version to stdout.
|
|
28
28
|
"""
|
|
29
|
-
sys.stdout.write("1.41.
|
|
29
|
+
sys.stdout.write("1.41.2\n")
|
|
30
30
|
|
|
31
31
|
|
|
32
32
|
def main() -> None:
|
mypy_boto3_athena/client.py
CHANGED
|
@@ -89,6 +89,10 @@ from .type_defs import (
|
|
|
89
89
|
GetQueryResultsOutputTypeDef,
|
|
90
90
|
GetQueryRuntimeStatisticsInputTypeDef,
|
|
91
91
|
GetQueryRuntimeStatisticsOutputTypeDef,
|
|
92
|
+
GetResourceDashboardRequestTypeDef,
|
|
93
|
+
GetResourceDashboardResponseTypeDef,
|
|
94
|
+
GetSessionEndpointRequestTypeDef,
|
|
95
|
+
GetSessionEndpointResponseTypeDef,
|
|
92
96
|
GetSessionRequestTypeDef,
|
|
93
97
|
GetSessionResponseTypeDef,
|
|
94
98
|
GetSessionStatusRequestTypeDef,
|
|
@@ -521,6 +525,16 @@ class AthenaClient(BaseClient):
|
|
|
521
525
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_athena/client/#get_query_runtime_statistics)
|
|
522
526
|
"""
|
|
523
527
|
|
|
528
|
+
def get_resource_dashboard(
|
|
529
|
+
self, **kwargs: Unpack[GetResourceDashboardRequestTypeDef]
|
|
530
|
+
) -> GetResourceDashboardResponseTypeDef:
|
|
531
|
+
"""
|
|
532
|
+
Gets the Live UI/Persistence UI for a session.
|
|
533
|
+
|
|
534
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/athena/client/get_resource_dashboard.html)
|
|
535
|
+
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_athena/client/#get_resource_dashboard)
|
|
536
|
+
"""
|
|
537
|
+
|
|
524
538
|
def get_session(self, **kwargs: Unpack[GetSessionRequestTypeDef]) -> GetSessionResponseTypeDef:
|
|
525
539
|
"""
|
|
526
540
|
Gets the full details of a previously created session, including the session
|
|
@@ -530,6 +544,16 @@ class AthenaClient(BaseClient):
|
|
|
530
544
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_athena/client/#get_session)
|
|
531
545
|
"""
|
|
532
546
|
|
|
547
|
+
def get_session_endpoint(
|
|
548
|
+
self, **kwargs: Unpack[GetSessionEndpointRequestTypeDef]
|
|
549
|
+
) -> GetSessionEndpointResponseTypeDef:
|
|
550
|
+
"""
|
|
551
|
+
Gets a connection endpoint and authentication token for a given session Id.
|
|
552
|
+
|
|
553
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/athena/client/get_session_endpoint.html)
|
|
554
|
+
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_athena/client/#get_session_endpoint)
|
|
555
|
+
"""
|
|
556
|
+
|
|
533
557
|
def get_session_status(
|
|
534
558
|
self, **kwargs: Unpack[GetSessionStatusRequestTypeDef]
|
|
535
559
|
) -> GetSessionStatusResponseTypeDef:
|
mypy_boto3_athena/client.pyi
CHANGED
|
@@ -89,6 +89,10 @@ from .type_defs import (
|
|
|
89
89
|
GetQueryResultsOutputTypeDef,
|
|
90
90
|
GetQueryRuntimeStatisticsInputTypeDef,
|
|
91
91
|
GetQueryRuntimeStatisticsOutputTypeDef,
|
|
92
|
+
GetResourceDashboardRequestTypeDef,
|
|
93
|
+
GetResourceDashboardResponseTypeDef,
|
|
94
|
+
GetSessionEndpointRequestTypeDef,
|
|
95
|
+
GetSessionEndpointResponseTypeDef,
|
|
92
96
|
GetSessionRequestTypeDef,
|
|
93
97
|
GetSessionResponseTypeDef,
|
|
94
98
|
GetSessionStatusRequestTypeDef,
|
|
@@ -518,6 +522,16 @@ class AthenaClient(BaseClient):
|
|
|
518
522
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_athena/client/#get_query_runtime_statistics)
|
|
519
523
|
"""
|
|
520
524
|
|
|
525
|
+
def get_resource_dashboard(
|
|
526
|
+
self, **kwargs: Unpack[GetResourceDashboardRequestTypeDef]
|
|
527
|
+
) -> GetResourceDashboardResponseTypeDef:
|
|
528
|
+
"""
|
|
529
|
+
Gets the Live UI/Persistence UI for a session.
|
|
530
|
+
|
|
531
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/athena/client/get_resource_dashboard.html)
|
|
532
|
+
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_athena/client/#get_resource_dashboard)
|
|
533
|
+
"""
|
|
534
|
+
|
|
521
535
|
def get_session(self, **kwargs: Unpack[GetSessionRequestTypeDef]) -> GetSessionResponseTypeDef:
|
|
522
536
|
"""
|
|
523
537
|
Gets the full details of a previously created session, including the session
|
|
@@ -527,6 +541,16 @@ class AthenaClient(BaseClient):
|
|
|
527
541
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_athena/client/#get_session)
|
|
528
542
|
"""
|
|
529
543
|
|
|
544
|
+
def get_session_endpoint(
|
|
545
|
+
self, **kwargs: Unpack[GetSessionEndpointRequestTypeDef]
|
|
546
|
+
) -> GetSessionEndpointResponseTypeDef:
|
|
547
|
+
"""
|
|
548
|
+
Gets a connection endpoint and authentication token for a given session Id.
|
|
549
|
+
|
|
550
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/athena/client/get_session_endpoint.html)
|
|
551
|
+
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_athena/client/#get_session_endpoint)
|
|
552
|
+
"""
|
|
553
|
+
|
|
530
554
|
def get_session_status(
|
|
531
555
|
self, **kwargs: Unpack[GetSessionStatusRequestTypeDef]
|
|
532
556
|
) -> GetSessionStatusResponseTypeDef:
|
mypy_boto3_athena/literals.py
CHANGED
mypy_boto3_athena/literals.pyi
CHANGED
mypy_boto3_athena/type_defs.py
CHANGED
|
@@ -67,6 +67,12 @@ __all__ = (
|
|
|
67
67
|
"CapacityAssignmentTypeDef",
|
|
68
68
|
"CapacityAssignmentUnionTypeDef",
|
|
69
69
|
"CapacityReservationTypeDef",
|
|
70
|
+
"ClassificationOutputTypeDef",
|
|
71
|
+
"ClassificationTypeDef",
|
|
72
|
+
"ClassificationUnionTypeDef",
|
|
73
|
+
"CloudWatchLoggingConfigurationOutputTypeDef",
|
|
74
|
+
"CloudWatchLoggingConfigurationTypeDef",
|
|
75
|
+
"CloudWatchLoggingConfigurationUnionTypeDef",
|
|
70
76
|
"ColumnInfoTypeDef",
|
|
71
77
|
"ColumnTypeDef",
|
|
72
78
|
"CreateCapacityReservationInputTypeDef",
|
|
@@ -128,6 +134,10 @@ __all__ = (
|
|
|
128
134
|
"GetQueryResultsOutputTypeDef",
|
|
129
135
|
"GetQueryRuntimeStatisticsInputTypeDef",
|
|
130
136
|
"GetQueryRuntimeStatisticsOutputTypeDef",
|
|
137
|
+
"GetResourceDashboardRequestTypeDef",
|
|
138
|
+
"GetResourceDashboardResponseTypeDef",
|
|
139
|
+
"GetSessionEndpointRequestTypeDef",
|
|
140
|
+
"GetSessionEndpointResponseTypeDef",
|
|
131
141
|
"GetSessionRequestTypeDef",
|
|
132
142
|
"GetSessionResponseTypeDef",
|
|
133
143
|
"GetSessionStatusRequestTypeDef",
|
|
@@ -177,9 +187,13 @@ __all__ = (
|
|
|
177
187
|
"ListTagsForResourceOutputTypeDef",
|
|
178
188
|
"ListWorkGroupsInputTypeDef",
|
|
179
189
|
"ListWorkGroupsOutputTypeDef",
|
|
190
|
+
"ManagedLoggingConfigurationTypeDef",
|
|
180
191
|
"ManagedQueryResultsConfigurationTypeDef",
|
|
181
192
|
"ManagedQueryResultsConfigurationUpdatesTypeDef",
|
|
182
193
|
"ManagedQueryResultsEncryptionConfigurationTypeDef",
|
|
194
|
+
"MonitoringConfigurationOutputTypeDef",
|
|
195
|
+
"MonitoringConfigurationTypeDef",
|
|
196
|
+
"MonitoringConfigurationUnionTypeDef",
|
|
183
197
|
"NamedQueryTypeDef",
|
|
184
198
|
"NotebookMetadataTypeDef",
|
|
185
199
|
"NotebookSessionSummaryTypeDef",
|
|
@@ -206,6 +220,7 @@ __all__ = (
|
|
|
206
220
|
"ResultSetMetadataTypeDef",
|
|
207
221
|
"ResultSetTypeDef",
|
|
208
222
|
"RowTypeDef",
|
|
223
|
+
"S3LoggingConfigurationTypeDef",
|
|
209
224
|
"SessionConfigurationTypeDef",
|
|
210
225
|
"SessionStatisticsTypeDef",
|
|
211
226
|
"SessionStatusTypeDef",
|
|
@@ -235,7 +250,9 @@ __all__ = (
|
|
|
235
250
|
"UpdateNotebookMetadataInputTypeDef",
|
|
236
251
|
"UpdatePreparedStatementInputTypeDef",
|
|
237
252
|
"UpdateWorkGroupInputTypeDef",
|
|
253
|
+
"WorkGroupConfigurationOutputTypeDef",
|
|
238
254
|
"WorkGroupConfigurationTypeDef",
|
|
255
|
+
"WorkGroupConfigurationUnionTypeDef",
|
|
239
256
|
"WorkGroupConfigurationUpdatesTypeDef",
|
|
240
257
|
"WorkGroupSummaryTypeDef",
|
|
241
258
|
"WorkGroupTypeDef",
|
|
@@ -356,6 +373,30 @@ class CapacityAssignmentTypeDef(TypedDict):
|
|
|
356
373
|
WorkGroupNames: NotRequired[Sequence[str]]
|
|
357
374
|
|
|
358
375
|
|
|
376
|
+
class ClassificationOutputTypeDef(TypedDict):
|
|
377
|
+
Name: NotRequired[str]
|
|
378
|
+
Properties: NotRequired[dict[str, str]]
|
|
379
|
+
|
|
380
|
+
|
|
381
|
+
class ClassificationTypeDef(TypedDict):
|
|
382
|
+
Name: NotRequired[str]
|
|
383
|
+
Properties: NotRequired[Mapping[str, str]]
|
|
384
|
+
|
|
385
|
+
|
|
386
|
+
class CloudWatchLoggingConfigurationOutputTypeDef(TypedDict):
|
|
387
|
+
Enabled: bool
|
|
388
|
+
LogGroup: NotRequired[str]
|
|
389
|
+
LogStreamNamePrefix: NotRequired[str]
|
|
390
|
+
LogTypes: NotRequired[dict[str, list[str]]]
|
|
391
|
+
|
|
392
|
+
|
|
393
|
+
class CloudWatchLoggingConfigurationTypeDef(TypedDict):
|
|
394
|
+
Enabled: bool
|
|
395
|
+
LogGroup: NotRequired[str]
|
|
396
|
+
LogStreamNamePrefix: NotRequired[str]
|
|
397
|
+
LogTypes: NotRequired[Mapping[str, Sequence[str]]]
|
|
398
|
+
|
|
399
|
+
|
|
359
400
|
ColumnInfoTypeDef = TypedDict(
|
|
360
401
|
"ColumnInfoTypeDef",
|
|
361
402
|
{
|
|
@@ -484,22 +525,6 @@ class EncryptionConfigurationTypeDef(TypedDict):
|
|
|
484
525
|
KmsKey: NotRequired[str]
|
|
485
526
|
|
|
486
527
|
|
|
487
|
-
class EngineConfigurationOutputTypeDef(TypedDict):
|
|
488
|
-
MaxConcurrentDpus: int
|
|
489
|
-
CoordinatorDpuSize: NotRequired[int]
|
|
490
|
-
DefaultExecutorDpuSize: NotRequired[int]
|
|
491
|
-
AdditionalConfigs: NotRequired[dict[str, str]]
|
|
492
|
-
SparkProperties: NotRequired[dict[str, str]]
|
|
493
|
-
|
|
494
|
-
|
|
495
|
-
class EngineConfigurationTypeDef(TypedDict):
|
|
496
|
-
MaxConcurrentDpus: int
|
|
497
|
-
CoordinatorDpuSize: NotRequired[int]
|
|
498
|
-
DefaultExecutorDpuSize: NotRequired[int]
|
|
499
|
-
AdditionalConfigs: NotRequired[Mapping[str, str]]
|
|
500
|
-
SparkProperties: NotRequired[Mapping[str, str]]
|
|
501
|
-
|
|
502
|
-
|
|
503
528
|
class EngineVersionTypeDef(TypedDict):
|
|
504
529
|
SelectedEngineVersion: NotRequired[str]
|
|
505
530
|
EffectiveEngineVersion: NotRequired[str]
|
|
@@ -600,6 +625,14 @@ class GetQueryRuntimeStatisticsInputTypeDef(TypedDict):
|
|
|
600
625
|
QueryExecutionId: str
|
|
601
626
|
|
|
602
627
|
|
|
628
|
+
class GetResourceDashboardRequestTypeDef(TypedDict):
|
|
629
|
+
ResourceARN: str
|
|
630
|
+
|
|
631
|
+
|
|
632
|
+
class GetSessionEndpointRequestTypeDef(TypedDict):
|
|
633
|
+
SessionId: str
|
|
634
|
+
|
|
635
|
+
|
|
603
636
|
class GetSessionRequestTypeDef(TypedDict):
|
|
604
637
|
SessionId: str
|
|
605
638
|
|
|
@@ -753,10 +786,21 @@ class ListWorkGroupsInputTypeDef(TypedDict):
|
|
|
753
786
|
MaxResults: NotRequired[int]
|
|
754
787
|
|
|
755
788
|
|
|
789
|
+
class ManagedLoggingConfigurationTypeDef(TypedDict):
|
|
790
|
+
Enabled: bool
|
|
791
|
+
KmsKey: NotRequired[str]
|
|
792
|
+
|
|
793
|
+
|
|
756
794
|
class ManagedQueryResultsEncryptionConfigurationTypeDef(TypedDict):
|
|
757
795
|
KmsKey: str
|
|
758
796
|
|
|
759
797
|
|
|
798
|
+
class S3LoggingConfigurationTypeDef(TypedDict):
|
|
799
|
+
Enabled: bool
|
|
800
|
+
KmsKey: NotRequired[str]
|
|
801
|
+
LogLocation: NotRequired[str]
|
|
802
|
+
|
|
803
|
+
|
|
760
804
|
class QueryExecutionContextTypeDef(TypedDict):
|
|
761
805
|
Database: NotRequired[str]
|
|
762
806
|
Catalog: NotRequired[str]
|
|
@@ -900,6 +944,18 @@ class GetNamedQueryOutputTypeDef(TypedDict):
|
|
|
900
944
|
ResponseMetadata: ResponseMetadataTypeDef
|
|
901
945
|
|
|
902
946
|
|
|
947
|
+
class GetResourceDashboardResponseTypeDef(TypedDict):
|
|
948
|
+
Url: str
|
|
949
|
+
ResponseMetadata: ResponseMetadataTypeDef
|
|
950
|
+
|
|
951
|
+
|
|
952
|
+
class GetSessionEndpointResponseTypeDef(TypedDict):
|
|
953
|
+
EndpointUrl: str
|
|
954
|
+
AuthToken: str
|
|
955
|
+
AuthTokenExpirationTime: datetime
|
|
956
|
+
ResponseMetadata: ResponseMetadataTypeDef
|
|
957
|
+
|
|
958
|
+
|
|
903
959
|
class ImportNotebookOutputTypeDef(TypedDict):
|
|
904
960
|
NotebookId: str
|
|
905
961
|
ResponseMetadata: ResponseMetadataTypeDef
|
|
@@ -1016,6 +1072,21 @@ class CapacityAssignmentConfigurationTypeDef(TypedDict):
|
|
|
1016
1072
|
CapacityAssignmentUnionTypeDef = Union[CapacityAssignmentTypeDef, CapacityAssignmentOutputTypeDef]
|
|
1017
1073
|
|
|
1018
1074
|
|
|
1075
|
+
class EngineConfigurationOutputTypeDef(TypedDict):
|
|
1076
|
+
CoordinatorDpuSize: NotRequired[int]
|
|
1077
|
+
MaxConcurrentDpus: NotRequired[int]
|
|
1078
|
+
DefaultExecutorDpuSize: NotRequired[int]
|
|
1079
|
+
AdditionalConfigs: NotRequired[dict[str, str]]
|
|
1080
|
+
SparkProperties: NotRequired[dict[str, str]]
|
|
1081
|
+
Classifications: NotRequired[list[ClassificationOutputTypeDef]]
|
|
1082
|
+
|
|
1083
|
+
|
|
1084
|
+
ClassificationUnionTypeDef = Union[ClassificationTypeDef, ClassificationOutputTypeDef]
|
|
1085
|
+
CloudWatchLoggingConfigurationUnionTypeDef = Union[
|
|
1086
|
+
CloudWatchLoggingConfigurationTypeDef, CloudWatchLoggingConfigurationOutputTypeDef
|
|
1087
|
+
]
|
|
1088
|
+
|
|
1089
|
+
|
|
1019
1090
|
class ResultSetMetadataTypeDef(TypedDict):
|
|
1020
1091
|
ColumnInfo: NotRequired[list[ColumnInfoTypeDef]]
|
|
1021
1092
|
|
|
@@ -1117,14 +1188,10 @@ class SessionConfigurationTypeDef(TypedDict):
|
|
|
1117
1188
|
ExecutionRole: NotRequired[str]
|
|
1118
1189
|
WorkingDirectory: NotRequired[str]
|
|
1119
1190
|
IdleTimeoutSeconds: NotRequired[int]
|
|
1191
|
+
SessionIdleTimeoutInMinutes: NotRequired[int]
|
|
1120
1192
|
EncryptionConfiguration: NotRequired[EncryptionConfigurationTypeDef]
|
|
1121
1193
|
|
|
1122
1194
|
|
|
1123
|
-
EngineConfigurationUnionTypeDef = Union[
|
|
1124
|
-
EngineConfigurationTypeDef, EngineConfigurationOutputTypeDef
|
|
1125
|
-
]
|
|
1126
|
-
|
|
1127
|
-
|
|
1128
1195
|
class ListEngineVersionsOutputTypeDef(TypedDict):
|
|
1129
1196
|
EngineVersions: list[EngineVersionTypeDef]
|
|
1130
1197
|
ResponseMetadata: ResponseMetadataTypeDef
|
|
@@ -1248,6 +1315,12 @@ class ManagedQueryResultsConfigurationUpdatesTypeDef(TypedDict):
|
|
|
1248
1315
|
RemoveEncryptionConfiguration: NotRequired[bool]
|
|
1249
1316
|
|
|
1250
1317
|
|
|
1318
|
+
class MonitoringConfigurationOutputTypeDef(TypedDict):
|
|
1319
|
+
CloudWatchLoggingConfiguration: NotRequired[CloudWatchLoggingConfigurationOutputTypeDef]
|
|
1320
|
+
ManagedLoggingConfiguration: NotRequired[ManagedLoggingConfigurationTypeDef]
|
|
1321
|
+
S3LoggingConfiguration: NotRequired[S3LoggingConfigurationTypeDef]
|
|
1322
|
+
|
|
1323
|
+
|
|
1251
1324
|
class QueryExecutionStatisticsTypeDef(TypedDict):
|
|
1252
1325
|
EngineExecutionTimeInMillis: NotRequired[int]
|
|
1253
1326
|
DataScannedInBytes: NotRequired[int]
|
|
@@ -1258,6 +1331,7 @@ class QueryExecutionStatisticsTypeDef(TypedDict):
|
|
|
1258
1331
|
QueryPlanningTimeInMillis: NotRequired[int]
|
|
1259
1332
|
ServiceProcessingTimeInMillis: NotRequired[int]
|
|
1260
1333
|
ResultReuseInformation: NotRequired[ResultReuseInformationTypeDef]
|
|
1334
|
+
DpuCount: NotRequired[float]
|
|
1261
1335
|
|
|
1262
1336
|
|
|
1263
1337
|
class QueryStageTypeDef(TypedDict):
|
|
@@ -1303,6 +1377,21 @@ class PutCapacityAssignmentConfigurationInputTypeDef(TypedDict):
|
|
|
1303
1377
|
CapacityAssignments: Sequence[CapacityAssignmentUnionTypeDef]
|
|
1304
1378
|
|
|
1305
1379
|
|
|
1380
|
+
class EngineConfigurationTypeDef(TypedDict):
|
|
1381
|
+
CoordinatorDpuSize: NotRequired[int]
|
|
1382
|
+
MaxConcurrentDpus: NotRequired[int]
|
|
1383
|
+
DefaultExecutorDpuSize: NotRequired[int]
|
|
1384
|
+
AdditionalConfigs: NotRequired[Mapping[str, str]]
|
|
1385
|
+
SparkProperties: NotRequired[Mapping[str, str]]
|
|
1386
|
+
Classifications: NotRequired[Sequence[ClassificationUnionTypeDef]]
|
|
1387
|
+
|
|
1388
|
+
|
|
1389
|
+
class MonitoringConfigurationTypeDef(TypedDict):
|
|
1390
|
+
CloudWatchLoggingConfiguration: NotRequired[CloudWatchLoggingConfigurationUnionTypeDef]
|
|
1391
|
+
ManagedLoggingConfiguration: NotRequired[ManagedLoggingConfigurationTypeDef]
|
|
1392
|
+
S3LoggingConfiguration: NotRequired[S3LoggingConfigurationTypeDef]
|
|
1393
|
+
|
|
1394
|
+
|
|
1306
1395
|
class GetTableMetadataOutputTypeDef(TypedDict):
|
|
1307
1396
|
TableMetadata: TableMetadataTypeDef
|
|
1308
1397
|
ResponseMetadata: ResponseMetadataTypeDef
|
|
@@ -1319,6 +1408,18 @@ class ResultSetTypeDef(TypedDict):
|
|
|
1319
1408
|
ResultSetMetadata: NotRequired[ResultSetMetadataTypeDef]
|
|
1320
1409
|
|
|
1321
1410
|
|
|
1411
|
+
class ListWorkGroupsOutputTypeDef(TypedDict):
|
|
1412
|
+
WorkGroups: list[WorkGroupSummaryTypeDef]
|
|
1413
|
+
ResponseMetadata: ResponseMetadataTypeDef
|
|
1414
|
+
NextToken: NotRequired[str]
|
|
1415
|
+
|
|
1416
|
+
|
|
1417
|
+
class ListSessionsResponseTypeDef(TypedDict):
|
|
1418
|
+
Sessions: list[SessionSummaryTypeDef]
|
|
1419
|
+
ResponseMetadata: ResponseMetadataTypeDef
|
|
1420
|
+
NextToken: NotRequired[str]
|
|
1421
|
+
|
|
1422
|
+
|
|
1322
1423
|
class GetSessionResponseTypeDef(TypedDict):
|
|
1323
1424
|
SessionId: str
|
|
1324
1425
|
Description: str
|
|
@@ -1326,34 +1427,14 @@ class GetSessionResponseTypeDef(TypedDict):
|
|
|
1326
1427
|
EngineVersion: str
|
|
1327
1428
|
EngineConfiguration: EngineConfigurationOutputTypeDef
|
|
1328
1429
|
NotebookVersion: str
|
|
1430
|
+
MonitoringConfiguration: MonitoringConfigurationOutputTypeDef
|
|
1329
1431
|
SessionConfiguration: SessionConfigurationTypeDef
|
|
1330
1432
|
Status: SessionStatusTypeDef
|
|
1331
1433
|
Statistics: SessionStatisticsTypeDef
|
|
1332
1434
|
ResponseMetadata: ResponseMetadataTypeDef
|
|
1333
1435
|
|
|
1334
1436
|
|
|
1335
|
-
class
|
|
1336
|
-
WorkGroup: str
|
|
1337
|
-
EngineConfiguration: EngineConfigurationUnionTypeDef
|
|
1338
|
-
Description: NotRequired[str]
|
|
1339
|
-
NotebookVersion: NotRequired[str]
|
|
1340
|
-
SessionIdleTimeoutInMinutes: NotRequired[int]
|
|
1341
|
-
ClientRequestToken: NotRequired[str]
|
|
1342
|
-
|
|
1343
|
-
|
|
1344
|
-
class ListWorkGroupsOutputTypeDef(TypedDict):
|
|
1345
|
-
WorkGroups: list[WorkGroupSummaryTypeDef]
|
|
1346
|
-
ResponseMetadata: ResponseMetadataTypeDef
|
|
1347
|
-
NextToken: NotRequired[str]
|
|
1348
|
-
|
|
1349
|
-
|
|
1350
|
-
class ListSessionsResponseTypeDef(TypedDict):
|
|
1351
|
-
Sessions: list[SessionSummaryTypeDef]
|
|
1352
|
-
ResponseMetadata: ResponseMetadataTypeDef
|
|
1353
|
-
NextToken: NotRequired[str]
|
|
1354
|
-
|
|
1355
|
-
|
|
1356
|
-
class WorkGroupConfigurationTypeDef(TypedDict):
|
|
1437
|
+
class WorkGroupConfigurationOutputTypeDef(TypedDict):
|
|
1357
1438
|
ResultConfiguration: NotRequired[ResultConfigurationTypeDef]
|
|
1358
1439
|
ManagedQueryResultsConfiguration: NotRequired[ManagedQueryResultsConfigurationTypeDef]
|
|
1359
1440
|
EnforceWorkGroupConfiguration: NotRequired[bool]
|
|
@@ -1363,6 +1444,8 @@ class WorkGroupConfigurationTypeDef(TypedDict):
|
|
|
1363
1444
|
EngineVersion: NotRequired[EngineVersionTypeDef]
|
|
1364
1445
|
AdditionalConfiguration: NotRequired[str]
|
|
1365
1446
|
ExecutionRole: NotRequired[str]
|
|
1447
|
+
MonitoringConfiguration: NotRequired[MonitoringConfigurationOutputTypeDef]
|
|
1448
|
+
EngineConfiguration: NotRequired[EngineConfigurationOutputTypeDef]
|
|
1366
1449
|
CustomerContentEncryptionConfiguration: NotRequired[
|
|
1367
1450
|
CustomerContentEncryptionConfigurationTypeDef
|
|
1368
1451
|
]
|
|
@@ -1373,29 +1456,6 @@ class WorkGroupConfigurationTypeDef(TypedDict):
|
|
|
1373
1456
|
]
|
|
1374
1457
|
|
|
1375
1458
|
|
|
1376
|
-
class WorkGroupConfigurationUpdatesTypeDef(TypedDict):
|
|
1377
|
-
EnforceWorkGroupConfiguration: NotRequired[bool]
|
|
1378
|
-
ResultConfigurationUpdates: NotRequired[ResultConfigurationUpdatesTypeDef]
|
|
1379
|
-
ManagedQueryResultsConfigurationUpdates: NotRequired[
|
|
1380
|
-
ManagedQueryResultsConfigurationUpdatesTypeDef
|
|
1381
|
-
]
|
|
1382
|
-
PublishCloudWatchMetricsEnabled: NotRequired[bool]
|
|
1383
|
-
BytesScannedCutoffPerQuery: NotRequired[int]
|
|
1384
|
-
RemoveBytesScannedCutoffPerQuery: NotRequired[bool]
|
|
1385
|
-
RequesterPaysEnabled: NotRequired[bool]
|
|
1386
|
-
EngineVersion: NotRequired[EngineVersionTypeDef]
|
|
1387
|
-
RemoveCustomerContentEncryptionConfiguration: NotRequired[bool]
|
|
1388
|
-
AdditionalConfiguration: NotRequired[str]
|
|
1389
|
-
ExecutionRole: NotRequired[str]
|
|
1390
|
-
CustomerContentEncryptionConfiguration: NotRequired[
|
|
1391
|
-
CustomerContentEncryptionConfigurationTypeDef
|
|
1392
|
-
]
|
|
1393
|
-
EnableMinimumEncryptionConfiguration: NotRequired[bool]
|
|
1394
|
-
QueryResultsS3AccessGrantsConfiguration: NotRequired[
|
|
1395
|
-
QueryResultsS3AccessGrantsConfigurationTypeDef
|
|
1396
|
-
]
|
|
1397
|
-
|
|
1398
|
-
|
|
1399
1459
|
class QueryRuntimeStatisticsTypeDef(TypedDict):
|
|
1400
1460
|
Timeline: NotRequired[QueryRuntimeStatisticsTimelineTypeDef]
|
|
1401
1461
|
Rows: NotRequired[QueryRuntimeStatisticsRowsTypeDef]
|
|
@@ -1421,14 +1481,34 @@ class QueryExecutionTypeDef(TypedDict):
|
|
|
1421
1481
|
]
|
|
1422
1482
|
|
|
1423
1483
|
|
|
1424
|
-
|
|
1425
|
-
|
|
1426
|
-
|
|
1427
|
-
|
|
1484
|
+
EngineConfigurationUnionTypeDef = Union[
|
|
1485
|
+
EngineConfigurationTypeDef, EngineConfigurationOutputTypeDef
|
|
1486
|
+
]
|
|
1487
|
+
MonitoringConfigurationUnionTypeDef = Union[
|
|
1488
|
+
MonitoringConfigurationTypeDef, MonitoringConfigurationOutputTypeDef
|
|
1489
|
+
]
|
|
1490
|
+
|
|
1491
|
+
|
|
1492
|
+
class WorkGroupConfigurationTypeDef(TypedDict):
|
|
1428
1493
|
ResultConfiguration: NotRequired[ResultConfigurationTypeDef]
|
|
1429
|
-
|
|
1430
|
-
|
|
1431
|
-
|
|
1494
|
+
ManagedQueryResultsConfiguration: NotRequired[ManagedQueryResultsConfigurationTypeDef]
|
|
1495
|
+
EnforceWorkGroupConfiguration: NotRequired[bool]
|
|
1496
|
+
PublishCloudWatchMetricsEnabled: NotRequired[bool]
|
|
1497
|
+
BytesScannedCutoffPerQuery: NotRequired[int]
|
|
1498
|
+
RequesterPaysEnabled: NotRequired[bool]
|
|
1499
|
+
EngineVersion: NotRequired[EngineVersionTypeDef]
|
|
1500
|
+
AdditionalConfiguration: NotRequired[str]
|
|
1501
|
+
ExecutionRole: NotRequired[str]
|
|
1502
|
+
MonitoringConfiguration: NotRequired[MonitoringConfigurationTypeDef]
|
|
1503
|
+
EngineConfiguration: NotRequired[EngineConfigurationTypeDef]
|
|
1504
|
+
CustomerContentEncryptionConfiguration: NotRequired[
|
|
1505
|
+
CustomerContentEncryptionConfigurationTypeDef
|
|
1506
|
+
]
|
|
1507
|
+
EnableMinimumEncryptionConfiguration: NotRequired[bool]
|
|
1508
|
+
IdentityCenterConfiguration: NotRequired[IdentityCenterConfigurationTypeDef]
|
|
1509
|
+
QueryResultsS3AccessGrantsConfiguration: NotRequired[
|
|
1510
|
+
QueryResultsS3AccessGrantsConfigurationTypeDef
|
|
1511
|
+
]
|
|
1432
1512
|
|
|
1433
1513
|
|
|
1434
1514
|
class GetQueryResultsOutputTypeDef(TypedDict):
|
|
@@ -1438,29 +1518,15 @@ class GetQueryResultsOutputTypeDef(TypedDict):
|
|
|
1438
1518
|
NextToken: NotRequired[str]
|
|
1439
1519
|
|
|
1440
1520
|
|
|
1441
|
-
class CreateWorkGroupInputTypeDef(TypedDict):
|
|
1442
|
-
Name: str
|
|
1443
|
-
Configuration: NotRequired[WorkGroupConfigurationTypeDef]
|
|
1444
|
-
Description: NotRequired[str]
|
|
1445
|
-
Tags: NotRequired[Sequence[TagTypeDef]]
|
|
1446
|
-
|
|
1447
|
-
|
|
1448
1521
|
class WorkGroupTypeDef(TypedDict):
|
|
1449
1522
|
Name: str
|
|
1450
1523
|
State: NotRequired[WorkGroupStateType]
|
|
1451
|
-
Configuration: NotRequired[
|
|
1524
|
+
Configuration: NotRequired[WorkGroupConfigurationOutputTypeDef]
|
|
1452
1525
|
Description: NotRequired[str]
|
|
1453
1526
|
CreationTime: NotRequired[datetime]
|
|
1454
1527
|
IdentityCenterApplicationArn: NotRequired[str]
|
|
1455
1528
|
|
|
1456
1529
|
|
|
1457
|
-
class UpdateWorkGroupInputTypeDef(TypedDict):
|
|
1458
|
-
WorkGroup: str
|
|
1459
|
-
Description: NotRequired[str]
|
|
1460
|
-
ConfigurationUpdates: NotRequired[WorkGroupConfigurationUpdatesTypeDef]
|
|
1461
|
-
State: NotRequired[WorkGroupStateType]
|
|
1462
|
-
|
|
1463
|
-
|
|
1464
1530
|
class GetQueryRuntimeStatisticsOutputTypeDef(TypedDict):
|
|
1465
1531
|
QueryRuntimeStatistics: QueryRuntimeStatisticsTypeDef
|
|
1466
1532
|
ResponseMetadata: ResponseMetadataTypeDef
|
|
@@ -1477,6 +1543,74 @@ class GetQueryExecutionOutputTypeDef(TypedDict):
|
|
|
1477
1543
|
ResponseMetadata: ResponseMetadataTypeDef
|
|
1478
1544
|
|
|
1479
1545
|
|
|
1546
|
+
class StartQueryExecutionInputTypeDef(TypedDict):
|
|
1547
|
+
QueryString: str
|
|
1548
|
+
ClientRequestToken: NotRequired[str]
|
|
1549
|
+
QueryExecutionContext: NotRequired[QueryExecutionContextTypeDef]
|
|
1550
|
+
ResultConfiguration: NotRequired[ResultConfigurationTypeDef]
|
|
1551
|
+
WorkGroup: NotRequired[str]
|
|
1552
|
+
ExecutionParameters: NotRequired[Sequence[str]]
|
|
1553
|
+
ResultReuseConfiguration: NotRequired[ResultReuseConfigurationTypeDef]
|
|
1554
|
+
EngineConfiguration: NotRequired[EngineConfigurationUnionTypeDef]
|
|
1555
|
+
|
|
1556
|
+
|
|
1557
|
+
class StartSessionRequestTypeDef(TypedDict):
|
|
1558
|
+
WorkGroup: str
|
|
1559
|
+
EngineConfiguration: EngineConfigurationUnionTypeDef
|
|
1560
|
+
Description: NotRequired[str]
|
|
1561
|
+
ExecutionRole: NotRequired[str]
|
|
1562
|
+
MonitoringConfiguration: NotRequired[MonitoringConfigurationUnionTypeDef]
|
|
1563
|
+
NotebookVersion: NotRequired[str]
|
|
1564
|
+
SessionIdleTimeoutInMinutes: NotRequired[int]
|
|
1565
|
+
ClientRequestToken: NotRequired[str]
|
|
1566
|
+
Tags: NotRequired[Sequence[TagTypeDef]]
|
|
1567
|
+
CopyWorkGroupTags: NotRequired[bool]
|
|
1568
|
+
|
|
1569
|
+
|
|
1570
|
+
class WorkGroupConfigurationUpdatesTypeDef(TypedDict):
|
|
1571
|
+
EnforceWorkGroupConfiguration: NotRequired[bool]
|
|
1572
|
+
ResultConfigurationUpdates: NotRequired[ResultConfigurationUpdatesTypeDef]
|
|
1573
|
+
ManagedQueryResultsConfigurationUpdates: NotRequired[
|
|
1574
|
+
ManagedQueryResultsConfigurationUpdatesTypeDef
|
|
1575
|
+
]
|
|
1576
|
+
PublishCloudWatchMetricsEnabled: NotRequired[bool]
|
|
1577
|
+
BytesScannedCutoffPerQuery: NotRequired[int]
|
|
1578
|
+
RemoveBytesScannedCutoffPerQuery: NotRequired[bool]
|
|
1579
|
+
RequesterPaysEnabled: NotRequired[bool]
|
|
1580
|
+
EngineVersion: NotRequired[EngineVersionTypeDef]
|
|
1581
|
+
RemoveCustomerContentEncryptionConfiguration: NotRequired[bool]
|
|
1582
|
+
AdditionalConfiguration: NotRequired[str]
|
|
1583
|
+
ExecutionRole: NotRequired[str]
|
|
1584
|
+
CustomerContentEncryptionConfiguration: NotRequired[
|
|
1585
|
+
CustomerContentEncryptionConfigurationTypeDef
|
|
1586
|
+
]
|
|
1587
|
+
EnableMinimumEncryptionConfiguration: NotRequired[bool]
|
|
1588
|
+
QueryResultsS3AccessGrantsConfiguration: NotRequired[
|
|
1589
|
+
QueryResultsS3AccessGrantsConfigurationTypeDef
|
|
1590
|
+
]
|
|
1591
|
+
MonitoringConfiguration: NotRequired[MonitoringConfigurationUnionTypeDef]
|
|
1592
|
+
EngineConfiguration: NotRequired[EngineConfigurationUnionTypeDef]
|
|
1593
|
+
|
|
1594
|
+
|
|
1595
|
+
WorkGroupConfigurationUnionTypeDef = Union[
|
|
1596
|
+
WorkGroupConfigurationTypeDef, WorkGroupConfigurationOutputTypeDef
|
|
1597
|
+
]
|
|
1598
|
+
|
|
1599
|
+
|
|
1480
1600
|
class GetWorkGroupOutputTypeDef(TypedDict):
|
|
1481
1601
|
WorkGroup: WorkGroupTypeDef
|
|
1482
1602
|
ResponseMetadata: ResponseMetadataTypeDef
|
|
1603
|
+
|
|
1604
|
+
|
|
1605
|
+
class UpdateWorkGroupInputTypeDef(TypedDict):
|
|
1606
|
+
WorkGroup: str
|
|
1607
|
+
Description: NotRequired[str]
|
|
1608
|
+
ConfigurationUpdates: NotRequired[WorkGroupConfigurationUpdatesTypeDef]
|
|
1609
|
+
State: NotRequired[WorkGroupStateType]
|
|
1610
|
+
|
|
1611
|
+
|
|
1612
|
+
class CreateWorkGroupInputTypeDef(TypedDict):
|
|
1613
|
+
Name: str
|
|
1614
|
+
Configuration: NotRequired[WorkGroupConfigurationUnionTypeDef]
|
|
1615
|
+
Description: NotRequired[str]
|
|
1616
|
+
Tags: NotRequired[Sequence[TagTypeDef]]
|
mypy_boto3_athena/type_defs.pyi
CHANGED
|
@@ -66,6 +66,12 @@ __all__ = (
|
|
|
66
66
|
"CapacityAssignmentTypeDef",
|
|
67
67
|
"CapacityAssignmentUnionTypeDef",
|
|
68
68
|
"CapacityReservationTypeDef",
|
|
69
|
+
"ClassificationOutputTypeDef",
|
|
70
|
+
"ClassificationTypeDef",
|
|
71
|
+
"ClassificationUnionTypeDef",
|
|
72
|
+
"CloudWatchLoggingConfigurationOutputTypeDef",
|
|
73
|
+
"CloudWatchLoggingConfigurationTypeDef",
|
|
74
|
+
"CloudWatchLoggingConfigurationUnionTypeDef",
|
|
69
75
|
"ColumnInfoTypeDef",
|
|
70
76
|
"ColumnTypeDef",
|
|
71
77
|
"CreateCapacityReservationInputTypeDef",
|
|
@@ -127,6 +133,10 @@ __all__ = (
|
|
|
127
133
|
"GetQueryResultsOutputTypeDef",
|
|
128
134
|
"GetQueryRuntimeStatisticsInputTypeDef",
|
|
129
135
|
"GetQueryRuntimeStatisticsOutputTypeDef",
|
|
136
|
+
"GetResourceDashboardRequestTypeDef",
|
|
137
|
+
"GetResourceDashboardResponseTypeDef",
|
|
138
|
+
"GetSessionEndpointRequestTypeDef",
|
|
139
|
+
"GetSessionEndpointResponseTypeDef",
|
|
130
140
|
"GetSessionRequestTypeDef",
|
|
131
141
|
"GetSessionResponseTypeDef",
|
|
132
142
|
"GetSessionStatusRequestTypeDef",
|
|
@@ -176,9 +186,13 @@ __all__ = (
|
|
|
176
186
|
"ListTagsForResourceOutputTypeDef",
|
|
177
187
|
"ListWorkGroupsInputTypeDef",
|
|
178
188
|
"ListWorkGroupsOutputTypeDef",
|
|
189
|
+
"ManagedLoggingConfigurationTypeDef",
|
|
179
190
|
"ManagedQueryResultsConfigurationTypeDef",
|
|
180
191
|
"ManagedQueryResultsConfigurationUpdatesTypeDef",
|
|
181
192
|
"ManagedQueryResultsEncryptionConfigurationTypeDef",
|
|
193
|
+
"MonitoringConfigurationOutputTypeDef",
|
|
194
|
+
"MonitoringConfigurationTypeDef",
|
|
195
|
+
"MonitoringConfigurationUnionTypeDef",
|
|
182
196
|
"NamedQueryTypeDef",
|
|
183
197
|
"NotebookMetadataTypeDef",
|
|
184
198
|
"NotebookSessionSummaryTypeDef",
|
|
@@ -205,6 +219,7 @@ __all__ = (
|
|
|
205
219
|
"ResultSetMetadataTypeDef",
|
|
206
220
|
"ResultSetTypeDef",
|
|
207
221
|
"RowTypeDef",
|
|
222
|
+
"S3LoggingConfigurationTypeDef",
|
|
208
223
|
"SessionConfigurationTypeDef",
|
|
209
224
|
"SessionStatisticsTypeDef",
|
|
210
225
|
"SessionStatusTypeDef",
|
|
@@ -234,7 +249,9 @@ __all__ = (
|
|
|
234
249
|
"UpdateNotebookMetadataInputTypeDef",
|
|
235
250
|
"UpdatePreparedStatementInputTypeDef",
|
|
236
251
|
"UpdateWorkGroupInputTypeDef",
|
|
252
|
+
"WorkGroupConfigurationOutputTypeDef",
|
|
237
253
|
"WorkGroupConfigurationTypeDef",
|
|
254
|
+
"WorkGroupConfigurationUnionTypeDef",
|
|
238
255
|
"WorkGroupConfigurationUpdatesTypeDef",
|
|
239
256
|
"WorkGroupSummaryTypeDef",
|
|
240
257
|
"WorkGroupTypeDef",
|
|
@@ -334,6 +351,26 @@ class CapacityAssignmentOutputTypeDef(TypedDict):
|
|
|
334
351
|
class CapacityAssignmentTypeDef(TypedDict):
|
|
335
352
|
WorkGroupNames: NotRequired[Sequence[str]]
|
|
336
353
|
|
|
354
|
+
class ClassificationOutputTypeDef(TypedDict):
|
|
355
|
+
Name: NotRequired[str]
|
|
356
|
+
Properties: NotRequired[dict[str, str]]
|
|
357
|
+
|
|
358
|
+
class ClassificationTypeDef(TypedDict):
|
|
359
|
+
Name: NotRequired[str]
|
|
360
|
+
Properties: NotRequired[Mapping[str, str]]
|
|
361
|
+
|
|
362
|
+
class CloudWatchLoggingConfigurationOutputTypeDef(TypedDict):
|
|
363
|
+
Enabled: bool
|
|
364
|
+
LogGroup: NotRequired[str]
|
|
365
|
+
LogStreamNamePrefix: NotRequired[str]
|
|
366
|
+
LogTypes: NotRequired[dict[str, list[str]]]
|
|
367
|
+
|
|
368
|
+
class CloudWatchLoggingConfigurationTypeDef(TypedDict):
|
|
369
|
+
Enabled: bool
|
|
370
|
+
LogGroup: NotRequired[str]
|
|
371
|
+
LogStreamNamePrefix: NotRequired[str]
|
|
372
|
+
LogTypes: NotRequired[Mapping[str, Sequence[str]]]
|
|
373
|
+
|
|
337
374
|
ColumnInfoTypeDef = TypedDict(
|
|
338
375
|
"ColumnInfoTypeDef",
|
|
339
376
|
{
|
|
@@ -444,20 +481,6 @@ class EncryptionConfigurationTypeDef(TypedDict):
|
|
|
444
481
|
EncryptionOption: EncryptionOptionType
|
|
445
482
|
KmsKey: NotRequired[str]
|
|
446
483
|
|
|
447
|
-
class EngineConfigurationOutputTypeDef(TypedDict):
|
|
448
|
-
MaxConcurrentDpus: int
|
|
449
|
-
CoordinatorDpuSize: NotRequired[int]
|
|
450
|
-
DefaultExecutorDpuSize: NotRequired[int]
|
|
451
|
-
AdditionalConfigs: NotRequired[dict[str, str]]
|
|
452
|
-
SparkProperties: NotRequired[dict[str, str]]
|
|
453
|
-
|
|
454
|
-
class EngineConfigurationTypeDef(TypedDict):
|
|
455
|
-
MaxConcurrentDpus: int
|
|
456
|
-
CoordinatorDpuSize: NotRequired[int]
|
|
457
|
-
DefaultExecutorDpuSize: NotRequired[int]
|
|
458
|
-
AdditionalConfigs: NotRequired[Mapping[str, str]]
|
|
459
|
-
SparkProperties: NotRequired[Mapping[str, str]]
|
|
460
|
-
|
|
461
484
|
class EngineVersionTypeDef(TypedDict):
|
|
462
485
|
SelectedEngineVersion: NotRequired[str]
|
|
463
486
|
EffectiveEngineVersion: NotRequired[str]
|
|
@@ -539,6 +562,12 @@ class GetQueryResultsInputTypeDef(TypedDict):
|
|
|
539
562
|
class GetQueryRuntimeStatisticsInputTypeDef(TypedDict):
|
|
540
563
|
QueryExecutionId: str
|
|
541
564
|
|
|
565
|
+
class GetResourceDashboardRequestTypeDef(TypedDict):
|
|
566
|
+
ResourceARN: str
|
|
567
|
+
|
|
568
|
+
class GetSessionEndpointRequestTypeDef(TypedDict):
|
|
569
|
+
SessionId: str
|
|
570
|
+
|
|
542
571
|
class GetSessionRequestTypeDef(TypedDict):
|
|
543
572
|
SessionId: str
|
|
544
573
|
|
|
@@ -667,9 +696,18 @@ class ListWorkGroupsInputTypeDef(TypedDict):
|
|
|
667
696
|
NextToken: NotRequired[str]
|
|
668
697
|
MaxResults: NotRequired[int]
|
|
669
698
|
|
|
699
|
+
class ManagedLoggingConfigurationTypeDef(TypedDict):
|
|
700
|
+
Enabled: bool
|
|
701
|
+
KmsKey: NotRequired[str]
|
|
702
|
+
|
|
670
703
|
class ManagedQueryResultsEncryptionConfigurationTypeDef(TypedDict):
|
|
671
704
|
KmsKey: str
|
|
672
705
|
|
|
706
|
+
class S3LoggingConfigurationTypeDef(TypedDict):
|
|
707
|
+
Enabled: bool
|
|
708
|
+
KmsKey: NotRequired[str]
|
|
709
|
+
LogLocation: NotRequired[str]
|
|
710
|
+
|
|
673
711
|
class QueryExecutionContextTypeDef(TypedDict):
|
|
674
712
|
Database: NotRequired[str]
|
|
675
713
|
Catalog: NotRequired[str]
|
|
@@ -790,6 +828,16 @@ class GetNamedQueryOutputTypeDef(TypedDict):
|
|
|
790
828
|
NamedQuery: NamedQueryTypeDef
|
|
791
829
|
ResponseMetadata: ResponseMetadataTypeDef
|
|
792
830
|
|
|
831
|
+
class GetResourceDashboardResponseTypeDef(TypedDict):
|
|
832
|
+
Url: str
|
|
833
|
+
ResponseMetadata: ResponseMetadataTypeDef
|
|
834
|
+
|
|
835
|
+
class GetSessionEndpointResponseTypeDef(TypedDict):
|
|
836
|
+
EndpointUrl: str
|
|
837
|
+
AuthToken: str
|
|
838
|
+
AuthTokenExpirationTime: datetime
|
|
839
|
+
ResponseMetadata: ResponseMetadataTypeDef
|
|
840
|
+
|
|
793
841
|
class ImportNotebookOutputTypeDef(TypedDict):
|
|
794
842
|
NotebookId: str
|
|
795
843
|
ResponseMetadata: ResponseMetadataTypeDef
|
|
@@ -887,6 +935,19 @@ class CapacityAssignmentConfigurationTypeDef(TypedDict):
|
|
|
887
935
|
|
|
888
936
|
CapacityAssignmentUnionTypeDef = Union[CapacityAssignmentTypeDef, CapacityAssignmentOutputTypeDef]
|
|
889
937
|
|
|
938
|
+
class EngineConfigurationOutputTypeDef(TypedDict):
|
|
939
|
+
CoordinatorDpuSize: NotRequired[int]
|
|
940
|
+
MaxConcurrentDpus: NotRequired[int]
|
|
941
|
+
DefaultExecutorDpuSize: NotRequired[int]
|
|
942
|
+
AdditionalConfigs: NotRequired[dict[str, str]]
|
|
943
|
+
SparkProperties: NotRequired[dict[str, str]]
|
|
944
|
+
Classifications: NotRequired[list[ClassificationOutputTypeDef]]
|
|
945
|
+
|
|
946
|
+
ClassificationUnionTypeDef = Union[ClassificationTypeDef, ClassificationOutputTypeDef]
|
|
947
|
+
CloudWatchLoggingConfigurationUnionTypeDef = Union[
|
|
948
|
+
CloudWatchLoggingConfigurationTypeDef, CloudWatchLoggingConfigurationOutputTypeDef
|
|
949
|
+
]
|
|
950
|
+
|
|
890
951
|
class ResultSetMetadataTypeDef(TypedDict):
|
|
891
952
|
ColumnInfo: NotRequired[list[ColumnInfoTypeDef]]
|
|
892
953
|
|
|
@@ -973,12 +1034,9 @@ class SessionConfigurationTypeDef(TypedDict):
|
|
|
973
1034
|
ExecutionRole: NotRequired[str]
|
|
974
1035
|
WorkingDirectory: NotRequired[str]
|
|
975
1036
|
IdleTimeoutSeconds: NotRequired[int]
|
|
1037
|
+
SessionIdleTimeoutInMinutes: NotRequired[int]
|
|
976
1038
|
EncryptionConfiguration: NotRequired[EncryptionConfigurationTypeDef]
|
|
977
1039
|
|
|
978
|
-
EngineConfigurationUnionTypeDef = Union[
|
|
979
|
-
EngineConfigurationTypeDef, EngineConfigurationOutputTypeDef
|
|
980
|
-
]
|
|
981
|
-
|
|
982
1040
|
class ListEngineVersionsOutputTypeDef(TypedDict):
|
|
983
1041
|
EngineVersions: list[EngineVersionTypeDef]
|
|
984
1042
|
ResponseMetadata: ResponseMetadataTypeDef
|
|
@@ -1082,6 +1140,11 @@ class ManagedQueryResultsConfigurationUpdatesTypeDef(TypedDict):
|
|
|
1082
1140
|
EncryptionConfiguration: NotRequired[ManagedQueryResultsEncryptionConfigurationTypeDef]
|
|
1083
1141
|
RemoveEncryptionConfiguration: NotRequired[bool]
|
|
1084
1142
|
|
|
1143
|
+
class MonitoringConfigurationOutputTypeDef(TypedDict):
|
|
1144
|
+
CloudWatchLoggingConfiguration: NotRequired[CloudWatchLoggingConfigurationOutputTypeDef]
|
|
1145
|
+
ManagedLoggingConfiguration: NotRequired[ManagedLoggingConfigurationTypeDef]
|
|
1146
|
+
S3LoggingConfiguration: NotRequired[S3LoggingConfigurationTypeDef]
|
|
1147
|
+
|
|
1085
1148
|
class QueryExecutionStatisticsTypeDef(TypedDict):
|
|
1086
1149
|
EngineExecutionTimeInMillis: NotRequired[int]
|
|
1087
1150
|
DataScannedInBytes: NotRequired[int]
|
|
@@ -1092,6 +1155,7 @@ class QueryExecutionStatisticsTypeDef(TypedDict):
|
|
|
1092
1155
|
QueryPlanningTimeInMillis: NotRequired[int]
|
|
1093
1156
|
ServiceProcessingTimeInMillis: NotRequired[int]
|
|
1094
1157
|
ResultReuseInformation: NotRequired[ResultReuseInformationTypeDef]
|
|
1158
|
+
DpuCount: NotRequired[float]
|
|
1095
1159
|
|
|
1096
1160
|
class QueryStageTypeDef(TypedDict):
|
|
1097
1161
|
StageId: NotRequired[int]
|
|
@@ -1129,6 +1193,19 @@ class PutCapacityAssignmentConfigurationInputTypeDef(TypedDict):
|
|
|
1129
1193
|
CapacityReservationName: str
|
|
1130
1194
|
CapacityAssignments: Sequence[CapacityAssignmentUnionTypeDef]
|
|
1131
1195
|
|
|
1196
|
+
class EngineConfigurationTypeDef(TypedDict):
|
|
1197
|
+
CoordinatorDpuSize: NotRequired[int]
|
|
1198
|
+
MaxConcurrentDpus: NotRequired[int]
|
|
1199
|
+
DefaultExecutorDpuSize: NotRequired[int]
|
|
1200
|
+
AdditionalConfigs: NotRequired[Mapping[str, str]]
|
|
1201
|
+
SparkProperties: NotRequired[Mapping[str, str]]
|
|
1202
|
+
Classifications: NotRequired[Sequence[ClassificationUnionTypeDef]]
|
|
1203
|
+
|
|
1204
|
+
class MonitoringConfigurationTypeDef(TypedDict):
|
|
1205
|
+
CloudWatchLoggingConfiguration: NotRequired[CloudWatchLoggingConfigurationUnionTypeDef]
|
|
1206
|
+
ManagedLoggingConfiguration: NotRequired[ManagedLoggingConfigurationTypeDef]
|
|
1207
|
+
S3LoggingConfiguration: NotRequired[S3LoggingConfigurationTypeDef]
|
|
1208
|
+
|
|
1132
1209
|
class GetTableMetadataOutputTypeDef(TypedDict):
|
|
1133
1210
|
TableMetadata: TableMetadataTypeDef
|
|
1134
1211
|
ResponseMetadata: ResponseMetadataTypeDef
|
|
@@ -1142,6 +1219,16 @@ class ResultSetTypeDef(TypedDict):
|
|
|
1142
1219
|
Rows: NotRequired[list[RowTypeDef]]
|
|
1143
1220
|
ResultSetMetadata: NotRequired[ResultSetMetadataTypeDef]
|
|
1144
1221
|
|
|
1222
|
+
class ListWorkGroupsOutputTypeDef(TypedDict):
|
|
1223
|
+
WorkGroups: list[WorkGroupSummaryTypeDef]
|
|
1224
|
+
ResponseMetadata: ResponseMetadataTypeDef
|
|
1225
|
+
NextToken: NotRequired[str]
|
|
1226
|
+
|
|
1227
|
+
class ListSessionsResponseTypeDef(TypedDict):
|
|
1228
|
+
Sessions: list[SessionSummaryTypeDef]
|
|
1229
|
+
ResponseMetadata: ResponseMetadataTypeDef
|
|
1230
|
+
NextToken: NotRequired[str]
|
|
1231
|
+
|
|
1145
1232
|
class GetSessionResponseTypeDef(TypedDict):
|
|
1146
1233
|
SessionId: str
|
|
1147
1234
|
Description: str
|
|
@@ -1149,30 +1236,13 @@ class GetSessionResponseTypeDef(TypedDict):
|
|
|
1149
1236
|
EngineVersion: str
|
|
1150
1237
|
EngineConfiguration: EngineConfigurationOutputTypeDef
|
|
1151
1238
|
NotebookVersion: str
|
|
1239
|
+
MonitoringConfiguration: MonitoringConfigurationOutputTypeDef
|
|
1152
1240
|
SessionConfiguration: SessionConfigurationTypeDef
|
|
1153
1241
|
Status: SessionStatusTypeDef
|
|
1154
1242
|
Statistics: SessionStatisticsTypeDef
|
|
1155
1243
|
ResponseMetadata: ResponseMetadataTypeDef
|
|
1156
1244
|
|
|
1157
|
-
class
|
|
1158
|
-
WorkGroup: str
|
|
1159
|
-
EngineConfiguration: EngineConfigurationUnionTypeDef
|
|
1160
|
-
Description: NotRequired[str]
|
|
1161
|
-
NotebookVersion: NotRequired[str]
|
|
1162
|
-
SessionIdleTimeoutInMinutes: NotRequired[int]
|
|
1163
|
-
ClientRequestToken: NotRequired[str]
|
|
1164
|
-
|
|
1165
|
-
class ListWorkGroupsOutputTypeDef(TypedDict):
|
|
1166
|
-
WorkGroups: list[WorkGroupSummaryTypeDef]
|
|
1167
|
-
ResponseMetadata: ResponseMetadataTypeDef
|
|
1168
|
-
NextToken: NotRequired[str]
|
|
1169
|
-
|
|
1170
|
-
class ListSessionsResponseTypeDef(TypedDict):
|
|
1171
|
-
Sessions: list[SessionSummaryTypeDef]
|
|
1172
|
-
ResponseMetadata: ResponseMetadataTypeDef
|
|
1173
|
-
NextToken: NotRequired[str]
|
|
1174
|
-
|
|
1175
|
-
class WorkGroupConfigurationTypeDef(TypedDict):
|
|
1245
|
+
class WorkGroupConfigurationOutputTypeDef(TypedDict):
|
|
1176
1246
|
ResultConfiguration: NotRequired[ResultConfigurationTypeDef]
|
|
1177
1247
|
ManagedQueryResultsConfiguration: NotRequired[ManagedQueryResultsConfigurationTypeDef]
|
|
1178
1248
|
EnforceWorkGroupConfiguration: NotRequired[bool]
|
|
@@ -1182,6 +1252,8 @@ class WorkGroupConfigurationTypeDef(TypedDict):
|
|
|
1182
1252
|
EngineVersion: NotRequired[EngineVersionTypeDef]
|
|
1183
1253
|
AdditionalConfiguration: NotRequired[str]
|
|
1184
1254
|
ExecutionRole: NotRequired[str]
|
|
1255
|
+
MonitoringConfiguration: NotRequired[MonitoringConfigurationOutputTypeDef]
|
|
1256
|
+
EngineConfiguration: NotRequired[EngineConfigurationOutputTypeDef]
|
|
1185
1257
|
CustomerContentEncryptionConfiguration: NotRequired[
|
|
1186
1258
|
CustomerContentEncryptionConfigurationTypeDef
|
|
1187
1259
|
]
|
|
@@ -1191,28 +1263,6 @@ class WorkGroupConfigurationTypeDef(TypedDict):
|
|
|
1191
1263
|
QueryResultsS3AccessGrantsConfigurationTypeDef
|
|
1192
1264
|
]
|
|
1193
1265
|
|
|
1194
|
-
class WorkGroupConfigurationUpdatesTypeDef(TypedDict):
|
|
1195
|
-
EnforceWorkGroupConfiguration: NotRequired[bool]
|
|
1196
|
-
ResultConfigurationUpdates: NotRequired[ResultConfigurationUpdatesTypeDef]
|
|
1197
|
-
ManagedQueryResultsConfigurationUpdates: NotRequired[
|
|
1198
|
-
ManagedQueryResultsConfigurationUpdatesTypeDef
|
|
1199
|
-
]
|
|
1200
|
-
PublishCloudWatchMetricsEnabled: NotRequired[bool]
|
|
1201
|
-
BytesScannedCutoffPerQuery: NotRequired[int]
|
|
1202
|
-
RemoveBytesScannedCutoffPerQuery: NotRequired[bool]
|
|
1203
|
-
RequesterPaysEnabled: NotRequired[bool]
|
|
1204
|
-
EngineVersion: NotRequired[EngineVersionTypeDef]
|
|
1205
|
-
RemoveCustomerContentEncryptionConfiguration: NotRequired[bool]
|
|
1206
|
-
AdditionalConfiguration: NotRequired[str]
|
|
1207
|
-
ExecutionRole: NotRequired[str]
|
|
1208
|
-
CustomerContentEncryptionConfiguration: NotRequired[
|
|
1209
|
-
CustomerContentEncryptionConfigurationTypeDef
|
|
1210
|
-
]
|
|
1211
|
-
EnableMinimumEncryptionConfiguration: NotRequired[bool]
|
|
1212
|
-
QueryResultsS3AccessGrantsConfiguration: NotRequired[
|
|
1213
|
-
QueryResultsS3AccessGrantsConfigurationTypeDef
|
|
1214
|
-
]
|
|
1215
|
-
|
|
1216
1266
|
class QueryRuntimeStatisticsTypeDef(TypedDict):
|
|
1217
1267
|
Timeline: NotRequired[QueryRuntimeStatisticsTimelineTypeDef]
|
|
1218
1268
|
Rows: NotRequired[QueryRuntimeStatisticsRowsTypeDef]
|
|
@@ -1236,14 +1286,33 @@ class QueryExecutionTypeDef(TypedDict):
|
|
|
1236
1286
|
QueryResultsS3AccessGrantsConfigurationTypeDef
|
|
1237
1287
|
]
|
|
1238
1288
|
|
|
1239
|
-
|
|
1240
|
-
|
|
1241
|
-
|
|
1242
|
-
|
|
1289
|
+
EngineConfigurationUnionTypeDef = Union[
|
|
1290
|
+
EngineConfigurationTypeDef, EngineConfigurationOutputTypeDef
|
|
1291
|
+
]
|
|
1292
|
+
MonitoringConfigurationUnionTypeDef = Union[
|
|
1293
|
+
MonitoringConfigurationTypeDef, MonitoringConfigurationOutputTypeDef
|
|
1294
|
+
]
|
|
1295
|
+
|
|
1296
|
+
class WorkGroupConfigurationTypeDef(TypedDict):
|
|
1243
1297
|
ResultConfiguration: NotRequired[ResultConfigurationTypeDef]
|
|
1244
|
-
|
|
1245
|
-
|
|
1246
|
-
|
|
1298
|
+
ManagedQueryResultsConfiguration: NotRequired[ManagedQueryResultsConfigurationTypeDef]
|
|
1299
|
+
EnforceWorkGroupConfiguration: NotRequired[bool]
|
|
1300
|
+
PublishCloudWatchMetricsEnabled: NotRequired[bool]
|
|
1301
|
+
BytesScannedCutoffPerQuery: NotRequired[int]
|
|
1302
|
+
RequesterPaysEnabled: NotRequired[bool]
|
|
1303
|
+
EngineVersion: NotRequired[EngineVersionTypeDef]
|
|
1304
|
+
AdditionalConfiguration: NotRequired[str]
|
|
1305
|
+
ExecutionRole: NotRequired[str]
|
|
1306
|
+
MonitoringConfiguration: NotRequired[MonitoringConfigurationTypeDef]
|
|
1307
|
+
EngineConfiguration: NotRequired[EngineConfigurationTypeDef]
|
|
1308
|
+
CustomerContentEncryptionConfiguration: NotRequired[
|
|
1309
|
+
CustomerContentEncryptionConfigurationTypeDef
|
|
1310
|
+
]
|
|
1311
|
+
EnableMinimumEncryptionConfiguration: NotRequired[bool]
|
|
1312
|
+
IdentityCenterConfiguration: NotRequired[IdentityCenterConfigurationTypeDef]
|
|
1313
|
+
QueryResultsS3AccessGrantsConfiguration: NotRequired[
|
|
1314
|
+
QueryResultsS3AccessGrantsConfigurationTypeDef
|
|
1315
|
+
]
|
|
1247
1316
|
|
|
1248
1317
|
class GetQueryResultsOutputTypeDef(TypedDict):
|
|
1249
1318
|
UpdateCount: int
|
|
@@ -1251,26 +1320,14 @@ class GetQueryResultsOutputTypeDef(TypedDict):
|
|
|
1251
1320
|
ResponseMetadata: ResponseMetadataTypeDef
|
|
1252
1321
|
NextToken: NotRequired[str]
|
|
1253
1322
|
|
|
1254
|
-
class CreateWorkGroupInputTypeDef(TypedDict):
|
|
1255
|
-
Name: str
|
|
1256
|
-
Configuration: NotRequired[WorkGroupConfigurationTypeDef]
|
|
1257
|
-
Description: NotRequired[str]
|
|
1258
|
-
Tags: NotRequired[Sequence[TagTypeDef]]
|
|
1259
|
-
|
|
1260
1323
|
class WorkGroupTypeDef(TypedDict):
|
|
1261
1324
|
Name: str
|
|
1262
1325
|
State: NotRequired[WorkGroupStateType]
|
|
1263
|
-
Configuration: NotRequired[
|
|
1326
|
+
Configuration: NotRequired[WorkGroupConfigurationOutputTypeDef]
|
|
1264
1327
|
Description: NotRequired[str]
|
|
1265
1328
|
CreationTime: NotRequired[datetime]
|
|
1266
1329
|
IdentityCenterApplicationArn: NotRequired[str]
|
|
1267
1330
|
|
|
1268
|
-
class UpdateWorkGroupInputTypeDef(TypedDict):
|
|
1269
|
-
WorkGroup: str
|
|
1270
|
-
Description: NotRequired[str]
|
|
1271
|
-
ConfigurationUpdates: NotRequired[WorkGroupConfigurationUpdatesTypeDef]
|
|
1272
|
-
State: NotRequired[WorkGroupStateType]
|
|
1273
|
-
|
|
1274
1331
|
class GetQueryRuntimeStatisticsOutputTypeDef(TypedDict):
|
|
1275
1332
|
QueryRuntimeStatistics: QueryRuntimeStatisticsTypeDef
|
|
1276
1333
|
ResponseMetadata: ResponseMetadataTypeDef
|
|
@@ -1284,6 +1341,68 @@ class GetQueryExecutionOutputTypeDef(TypedDict):
|
|
|
1284
1341
|
QueryExecution: QueryExecutionTypeDef
|
|
1285
1342
|
ResponseMetadata: ResponseMetadataTypeDef
|
|
1286
1343
|
|
|
1344
|
+
class StartQueryExecutionInputTypeDef(TypedDict):
|
|
1345
|
+
QueryString: str
|
|
1346
|
+
ClientRequestToken: NotRequired[str]
|
|
1347
|
+
QueryExecutionContext: NotRequired[QueryExecutionContextTypeDef]
|
|
1348
|
+
ResultConfiguration: NotRequired[ResultConfigurationTypeDef]
|
|
1349
|
+
WorkGroup: NotRequired[str]
|
|
1350
|
+
ExecutionParameters: NotRequired[Sequence[str]]
|
|
1351
|
+
ResultReuseConfiguration: NotRequired[ResultReuseConfigurationTypeDef]
|
|
1352
|
+
EngineConfiguration: NotRequired[EngineConfigurationUnionTypeDef]
|
|
1353
|
+
|
|
1354
|
+
class StartSessionRequestTypeDef(TypedDict):
|
|
1355
|
+
WorkGroup: str
|
|
1356
|
+
EngineConfiguration: EngineConfigurationUnionTypeDef
|
|
1357
|
+
Description: NotRequired[str]
|
|
1358
|
+
ExecutionRole: NotRequired[str]
|
|
1359
|
+
MonitoringConfiguration: NotRequired[MonitoringConfigurationUnionTypeDef]
|
|
1360
|
+
NotebookVersion: NotRequired[str]
|
|
1361
|
+
SessionIdleTimeoutInMinutes: NotRequired[int]
|
|
1362
|
+
ClientRequestToken: NotRequired[str]
|
|
1363
|
+
Tags: NotRequired[Sequence[TagTypeDef]]
|
|
1364
|
+
CopyWorkGroupTags: NotRequired[bool]
|
|
1365
|
+
|
|
1366
|
+
class WorkGroupConfigurationUpdatesTypeDef(TypedDict):
|
|
1367
|
+
EnforceWorkGroupConfiguration: NotRequired[bool]
|
|
1368
|
+
ResultConfigurationUpdates: NotRequired[ResultConfigurationUpdatesTypeDef]
|
|
1369
|
+
ManagedQueryResultsConfigurationUpdates: NotRequired[
|
|
1370
|
+
ManagedQueryResultsConfigurationUpdatesTypeDef
|
|
1371
|
+
]
|
|
1372
|
+
PublishCloudWatchMetricsEnabled: NotRequired[bool]
|
|
1373
|
+
BytesScannedCutoffPerQuery: NotRequired[int]
|
|
1374
|
+
RemoveBytesScannedCutoffPerQuery: NotRequired[bool]
|
|
1375
|
+
RequesterPaysEnabled: NotRequired[bool]
|
|
1376
|
+
EngineVersion: NotRequired[EngineVersionTypeDef]
|
|
1377
|
+
RemoveCustomerContentEncryptionConfiguration: NotRequired[bool]
|
|
1378
|
+
AdditionalConfiguration: NotRequired[str]
|
|
1379
|
+
ExecutionRole: NotRequired[str]
|
|
1380
|
+
CustomerContentEncryptionConfiguration: NotRequired[
|
|
1381
|
+
CustomerContentEncryptionConfigurationTypeDef
|
|
1382
|
+
]
|
|
1383
|
+
EnableMinimumEncryptionConfiguration: NotRequired[bool]
|
|
1384
|
+
QueryResultsS3AccessGrantsConfiguration: NotRequired[
|
|
1385
|
+
QueryResultsS3AccessGrantsConfigurationTypeDef
|
|
1386
|
+
]
|
|
1387
|
+
MonitoringConfiguration: NotRequired[MonitoringConfigurationUnionTypeDef]
|
|
1388
|
+
EngineConfiguration: NotRequired[EngineConfigurationUnionTypeDef]
|
|
1389
|
+
|
|
1390
|
+
WorkGroupConfigurationUnionTypeDef = Union[
|
|
1391
|
+
WorkGroupConfigurationTypeDef, WorkGroupConfigurationOutputTypeDef
|
|
1392
|
+
]
|
|
1393
|
+
|
|
1287
1394
|
class GetWorkGroupOutputTypeDef(TypedDict):
|
|
1288
1395
|
WorkGroup: WorkGroupTypeDef
|
|
1289
1396
|
ResponseMetadata: ResponseMetadataTypeDef
|
|
1397
|
+
|
|
1398
|
+
class UpdateWorkGroupInputTypeDef(TypedDict):
|
|
1399
|
+
WorkGroup: str
|
|
1400
|
+
Description: NotRequired[str]
|
|
1401
|
+
ConfigurationUpdates: NotRequired[WorkGroupConfigurationUpdatesTypeDef]
|
|
1402
|
+
State: NotRequired[WorkGroupStateType]
|
|
1403
|
+
|
|
1404
|
+
class CreateWorkGroupInputTypeDef(TypedDict):
|
|
1405
|
+
Name: str
|
|
1406
|
+
Configuration: NotRequired[WorkGroupConfigurationUnionTypeDef]
|
|
1407
|
+
Description: NotRequired[str]
|
|
1408
|
+
Tags: NotRequired[Sequence[TagTypeDef]]
|
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.41.
|
|
4
|
-
Summary: Type annotations for boto3 Athena 1.41.
|
|
3
|
+
Version: 1.41.2
|
|
4
|
+
Summary: Type annotations for boto3 Athena 1.41.2 service generated with mypy-boto3-builder 8.12.0
|
|
5
5
|
Author-email: Vlad Emelianov <vlad.emelianov.nz@gmail.com>
|
|
6
6
|
License-Expression: MIT
|
|
7
7
|
Project-URL: Homepage, https://github.com/youtype/mypy_boto3_builder
|
|
@@ -42,7 +42,7 @@ Dynamic: license-file
|
|
|
42
42
|
|
|
43
43
|

|
|
44
44
|
|
|
45
|
-
Type annotations for [boto3 Athena 1.41.
|
|
45
|
+
Type annotations for [boto3 Athena 1.41.2](https://pypi.org/project/boto3/)
|
|
46
46
|
compatible with [VSCode](https://code.visualstudio.com/),
|
|
47
47
|
[PyCharm](https://www.jetbrains.com/pycharm/),
|
|
48
48
|
[Emacs](https://www.gnu.org/software/emacs/),
|
|
@@ -104,7 +104,7 @@ You can generate type annotations for `boto3` package locally with
|
|
|
104
104
|
isolation.
|
|
105
105
|
|
|
106
106
|
1. Run mypy-boto3-builder in your package root directory:
|
|
107
|
-
`uvx --with 'boto3==1.41.
|
|
107
|
+
`uvx --with 'boto3==1.41.2' mypy-boto3-builder`
|
|
108
108
|
2. Select `boto3-stubs` AWS SDK.
|
|
109
109
|
3. Add `Athena` service.
|
|
110
110
|
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=JTERMpwNmd7o2uOBAKH_wWMRXqtrenXEIyHeT7kkiJk,977
|
|
4
|
+
mypy_boto3_athena/client.py,sha256=JHYO8T7MSLOpmC34WRn7uO06cEQcUnE8XtCMOePsoxs,47984
|
|
5
|
+
mypy_boto3_athena/client.pyi,sha256=u-CuKWryUdE4AzZExqdl_wlYexBEYakYz9Fp79zYOfk,47981
|
|
6
|
+
mypy_boto3_athena/literals.py,sha256=i2Wc3qpSeVLd0WAxfTkzHwJhHrh47RpB77BiC7gjBu0,12891
|
|
7
|
+
mypy_boto3_athena/literals.pyi,sha256=LkBnejggg7_7C0lyh--S09g2DPyGhao7ToNKeeEsy2Q,12889
|
|
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=0SOa8iywncn1DljUJHMgSuLd6lKhpYGdIpWPmgDjXkc,47950
|
|
12
|
+
mypy_boto3_athena/type_defs.pyi,sha256=VDc6kUCsGJUN1fjZjBC3t41HXrNIDHyTcFtcycv8jZc,47742
|
|
13
|
+
mypy_boto3_athena/version.py,sha256=aLKGJmxodYlE7i2btZqBdcB8RTTGw1f6JzSmoqyix3w,92
|
|
14
|
+
mypy_boto3_athena-1.41.2.dist-info/licenses/LICENSE,sha256=4jNgB8jJbXtUVJkeygwhUQi--6lAG8DIisfE-h_RiUU,1070
|
|
15
|
+
mypy_boto3_athena-1.41.2.dist-info/METADATA,sha256=j2JOLzuT6tsqEyPgoysHERX6MY2b-iU_areENypCud8,15345
|
|
16
|
+
mypy_boto3_athena-1.41.2.dist-info/WHEEL,sha256=_zCd3N1l69ArxyTb8rzEoP9TpbYXkqRFSNOD5OuxnTs,91
|
|
17
|
+
mypy_boto3_athena-1.41.2.dist-info/top_level.txt,sha256=zhATfWFKeSfNk0lB3FXaQgvfFX_G02p4RuEUJSe6u0Q,18
|
|
18
|
+
mypy_boto3_athena-1.41.2.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=AKUG7ss8qFI2OB3rnH79roFi3Pguk6WoAAD7-aJ7aVE,977
|
|
4
|
-
mypy_boto3_athena/client.py,sha256=8uhnQ7mODWVe_wWHjdUf1rdCn3kcJ6ba_XruteCXhMI,46781
|
|
5
|
-
mypy_boto3_athena/client.pyi,sha256=7sAXrFeljcytAiY27I8hkVY_rJYMOd56N_iVN99atBY,46778
|
|
6
|
-
mypy_boto3_athena/literals.py,sha256=n3gTqpZuDFafHhtac6-wsVPErrFacMNuc1mtHt9zx48,12855
|
|
7
|
-
mypy_boto3_athena/literals.pyi,sha256=eSwNm2FD2cYvn3u1ShLJU1Mq776q-lG1Hx-1bAZHoig,12853
|
|
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=qu7xfB9-h2BD4vjkZ_reRbXbN_BOyiCbm9dcHlta89g,42914
|
|
12
|
-
mypy_boto3_athena/type_defs.pyi,sha256=SBPurxqmyVt7HwEoiY4gY-7DLXOXZlOP9J3PdYYO1Zg,42721
|
|
13
|
-
mypy_boto3_athena/version.py,sha256=ZtEblsbAVbZWuGFYY23SYRu3T8sCoiDNfG49dV1XWUA,92
|
|
14
|
-
mypy_boto3_athena-1.41.0.dist-info/licenses/LICENSE,sha256=4jNgB8jJbXtUVJkeygwhUQi--6lAG8DIisfE-h_RiUU,1070
|
|
15
|
-
mypy_boto3_athena-1.41.0.dist-info/METADATA,sha256=_bxm9thcvQbBCXCpg391SLxUpFA2J7ugAlfSCRhsju4,15345
|
|
16
|
-
mypy_boto3_athena-1.41.0.dist-info/WHEEL,sha256=_zCd3N1l69ArxyTb8rzEoP9TpbYXkqRFSNOD5OuxnTs,91
|
|
17
|
-
mypy_boto3_athena-1.41.0.dist-info/top_level.txt,sha256=zhATfWFKeSfNk0lB3FXaQgvfFX_G02p4RuEUJSe6u0Q,18
|
|
18
|
-
mypy_boto3_athena-1.41.0.dist-info/RECORD,,
|
|
File without changes
|
|
File without changes
|
|
File without changes
|