mypy-boto3-athena 1.40.60__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 +4 -4
- mypy_boto3_athena/client.py +52 -33
- mypy_boto3_athena/client.pyi +52 -33
- mypy_boto3_athena/literals.py +4 -7
- mypy_boto3_athena/literals.pyi +4 -7
- mypy_boto3_athena/type_defs.py +259 -130
- mypy_boto3_athena/type_defs.pyi +235 -121
- mypy_boto3_athena/version.py +1 -1
- {mypy_boto3_athena-1.40.60.dist-info → mypy_boto3_athena-1.41.2.dist-info}/METADATA +11 -25
- mypy_boto3_athena-1.41.2.dist-info/RECORD +18 -0
- mypy_boto3_athena-1.40.60.dist-info/RECORD +0 -18
- {mypy_boto3_athena-1.40.60.dist-info → mypy_boto3_athena-1.41.2.dist-info}/WHEEL +0 -0
- {mypy_boto3_athena-1.40.60.dist-info → mypy_boto3_athena-1.41.2.dist-info}/licenses/LICENSE +0 -0
- {mypy_boto3_athena-1.40.60.dist-info → mypy_boto3_athena-1.41.2.dist-info}/top_level.txt +0 -0
mypy_boto3_athena/type_defs.py
CHANGED
|
@@ -17,6 +17,7 @@ Usage::
|
|
|
17
17
|
from __future__ import annotations
|
|
18
18
|
|
|
19
19
|
import sys
|
|
20
|
+
from collections.abc import Mapping, Sequence
|
|
20
21
|
from datetime import datetime
|
|
21
22
|
from typing import Any, Union
|
|
22
23
|
|
|
@@ -38,12 +39,6 @@ from .literals import (
|
|
|
38
39
|
WorkGroupStateType,
|
|
39
40
|
)
|
|
40
41
|
|
|
41
|
-
if sys.version_info >= (3, 9):
|
|
42
|
-
from builtins import dict as Dict
|
|
43
|
-
from builtins import list as List
|
|
44
|
-
from collections.abc import Mapping, Sequence
|
|
45
|
-
else:
|
|
46
|
-
from typing import Dict, List, Mapping, Sequence
|
|
47
42
|
if sys.version_info >= (3, 12):
|
|
48
43
|
from typing import Literal, NotRequired, TypedDict
|
|
49
44
|
else:
|
|
@@ -72,6 +67,12 @@ __all__ = (
|
|
|
72
67
|
"CapacityAssignmentTypeDef",
|
|
73
68
|
"CapacityAssignmentUnionTypeDef",
|
|
74
69
|
"CapacityReservationTypeDef",
|
|
70
|
+
"ClassificationOutputTypeDef",
|
|
71
|
+
"ClassificationTypeDef",
|
|
72
|
+
"ClassificationUnionTypeDef",
|
|
73
|
+
"CloudWatchLoggingConfigurationOutputTypeDef",
|
|
74
|
+
"CloudWatchLoggingConfigurationTypeDef",
|
|
75
|
+
"CloudWatchLoggingConfigurationUnionTypeDef",
|
|
75
76
|
"ColumnInfoTypeDef",
|
|
76
77
|
"ColumnTypeDef",
|
|
77
78
|
"CreateCapacityReservationInputTypeDef",
|
|
@@ -133,6 +134,10 @@ __all__ = (
|
|
|
133
134
|
"GetQueryResultsOutputTypeDef",
|
|
134
135
|
"GetQueryRuntimeStatisticsInputTypeDef",
|
|
135
136
|
"GetQueryRuntimeStatisticsOutputTypeDef",
|
|
137
|
+
"GetResourceDashboardRequestTypeDef",
|
|
138
|
+
"GetResourceDashboardResponseTypeDef",
|
|
139
|
+
"GetSessionEndpointRequestTypeDef",
|
|
140
|
+
"GetSessionEndpointResponseTypeDef",
|
|
136
141
|
"GetSessionRequestTypeDef",
|
|
137
142
|
"GetSessionResponseTypeDef",
|
|
138
143
|
"GetSessionStatusRequestTypeDef",
|
|
@@ -182,9 +187,13 @@ __all__ = (
|
|
|
182
187
|
"ListTagsForResourceOutputTypeDef",
|
|
183
188
|
"ListWorkGroupsInputTypeDef",
|
|
184
189
|
"ListWorkGroupsOutputTypeDef",
|
|
190
|
+
"ManagedLoggingConfigurationTypeDef",
|
|
185
191
|
"ManagedQueryResultsConfigurationTypeDef",
|
|
186
192
|
"ManagedQueryResultsConfigurationUpdatesTypeDef",
|
|
187
193
|
"ManagedQueryResultsEncryptionConfigurationTypeDef",
|
|
194
|
+
"MonitoringConfigurationOutputTypeDef",
|
|
195
|
+
"MonitoringConfigurationTypeDef",
|
|
196
|
+
"MonitoringConfigurationUnionTypeDef",
|
|
188
197
|
"NamedQueryTypeDef",
|
|
189
198
|
"NotebookMetadataTypeDef",
|
|
190
199
|
"NotebookSessionSummaryTypeDef",
|
|
@@ -211,6 +220,7 @@ __all__ = (
|
|
|
211
220
|
"ResultSetMetadataTypeDef",
|
|
212
221
|
"ResultSetTypeDef",
|
|
213
222
|
"RowTypeDef",
|
|
223
|
+
"S3LoggingConfigurationTypeDef",
|
|
214
224
|
"SessionConfigurationTypeDef",
|
|
215
225
|
"SessionStatisticsTypeDef",
|
|
216
226
|
"SessionStatusTypeDef",
|
|
@@ -240,7 +250,9 @@ __all__ = (
|
|
|
240
250
|
"UpdateNotebookMetadataInputTypeDef",
|
|
241
251
|
"UpdatePreparedStatementInputTypeDef",
|
|
242
252
|
"UpdateWorkGroupInputTypeDef",
|
|
253
|
+
"WorkGroupConfigurationOutputTypeDef",
|
|
243
254
|
"WorkGroupConfigurationTypeDef",
|
|
255
|
+
"WorkGroupConfigurationUnionTypeDef",
|
|
244
256
|
"WorkGroupConfigurationUpdatesTypeDef",
|
|
245
257
|
"WorkGroupSummaryTypeDef",
|
|
246
258
|
"WorkGroupTypeDef",
|
|
@@ -253,7 +265,7 @@ class AclConfigurationTypeDef(TypedDict):
|
|
|
253
265
|
|
|
254
266
|
class ApplicationDPUSizesTypeDef(TypedDict):
|
|
255
267
|
ApplicationRuntimeId: NotRequired[str]
|
|
256
|
-
SupportedDPUSizes: NotRequired[
|
|
268
|
+
SupportedDPUSizes: NotRequired[list[int]]
|
|
257
269
|
|
|
258
270
|
|
|
259
271
|
class AthenaErrorTypeDef(TypedDict):
|
|
@@ -279,7 +291,7 @@ class NamedQueryTypeDef(TypedDict):
|
|
|
279
291
|
class ResponseMetadataTypeDef(TypedDict):
|
|
280
292
|
RequestId: str
|
|
281
293
|
HTTPStatusCode: int
|
|
282
|
-
HTTPHeaders:
|
|
294
|
+
HTTPHeaders: dict[str, str]
|
|
283
295
|
RetryAttempts: int
|
|
284
296
|
HostId: NotRequired[str]
|
|
285
297
|
|
|
@@ -354,13 +366,37 @@ class CapacityAllocationTypeDef(TypedDict):
|
|
|
354
366
|
|
|
355
367
|
|
|
356
368
|
class CapacityAssignmentOutputTypeDef(TypedDict):
|
|
357
|
-
WorkGroupNames: NotRequired[
|
|
369
|
+
WorkGroupNames: NotRequired[list[str]]
|
|
358
370
|
|
|
359
371
|
|
|
360
372
|
class CapacityAssignmentTypeDef(TypedDict):
|
|
361
373
|
WorkGroupNames: NotRequired[Sequence[str]]
|
|
362
374
|
|
|
363
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
|
+
|
|
364
400
|
ColumnInfoTypeDef = TypedDict(
|
|
365
401
|
"ColumnInfoTypeDef",
|
|
366
402
|
{
|
|
@@ -397,7 +433,7 @@ DataCatalogTypeDef = TypedDict(
|
|
|
397
433
|
"Name": str,
|
|
398
434
|
"Type": DataCatalogTypeType,
|
|
399
435
|
"Description": NotRequired[str],
|
|
400
|
-
"Parameters": NotRequired[
|
|
436
|
+
"Parameters": NotRequired[dict[str, str]],
|
|
401
437
|
"Status": NotRequired[DataCatalogStatusType],
|
|
402
438
|
"ConnectionType": NotRequired[ConnectionTypeType],
|
|
403
439
|
"Error": NotRequired[str],
|
|
@@ -450,7 +486,7 @@ DataCatalogSummaryTypeDef = TypedDict(
|
|
|
450
486
|
class DatabaseTypeDef(TypedDict):
|
|
451
487
|
Name: str
|
|
452
488
|
Description: NotRequired[str]
|
|
453
|
-
Parameters: NotRequired[
|
|
489
|
+
Parameters: NotRequired[dict[str, str]]
|
|
454
490
|
|
|
455
491
|
|
|
456
492
|
class DatumTypeDef(TypedDict):
|
|
@@ -489,22 +525,6 @@ class EncryptionConfigurationTypeDef(TypedDict):
|
|
|
489
525
|
KmsKey: NotRequired[str]
|
|
490
526
|
|
|
491
527
|
|
|
492
|
-
class EngineConfigurationOutputTypeDef(TypedDict):
|
|
493
|
-
MaxConcurrentDpus: int
|
|
494
|
-
CoordinatorDpuSize: NotRequired[int]
|
|
495
|
-
DefaultExecutorDpuSize: NotRequired[int]
|
|
496
|
-
AdditionalConfigs: NotRequired[Dict[str, str]]
|
|
497
|
-
SparkProperties: NotRequired[Dict[str, str]]
|
|
498
|
-
|
|
499
|
-
|
|
500
|
-
class EngineConfigurationTypeDef(TypedDict):
|
|
501
|
-
MaxConcurrentDpus: int
|
|
502
|
-
CoordinatorDpuSize: NotRequired[int]
|
|
503
|
-
DefaultExecutorDpuSize: NotRequired[int]
|
|
504
|
-
AdditionalConfigs: NotRequired[Mapping[str, str]]
|
|
505
|
-
SparkProperties: NotRequired[Mapping[str, str]]
|
|
506
|
-
|
|
507
|
-
|
|
508
528
|
class EngineVersionTypeDef(TypedDict):
|
|
509
529
|
SelectedEngineVersion: NotRequired[str]
|
|
510
530
|
EffectiveEngineVersion: NotRequired[str]
|
|
@@ -605,6 +625,14 @@ class GetQueryRuntimeStatisticsInputTypeDef(TypedDict):
|
|
|
605
625
|
QueryExecutionId: str
|
|
606
626
|
|
|
607
627
|
|
|
628
|
+
class GetResourceDashboardRequestTypeDef(TypedDict):
|
|
629
|
+
ResourceARN: str
|
|
630
|
+
|
|
631
|
+
|
|
632
|
+
class GetSessionEndpointRequestTypeDef(TypedDict):
|
|
633
|
+
SessionId: str
|
|
634
|
+
|
|
635
|
+
|
|
608
636
|
class GetSessionRequestTypeDef(TypedDict):
|
|
609
637
|
SessionId: str
|
|
610
638
|
|
|
@@ -758,10 +786,21 @@ class ListWorkGroupsInputTypeDef(TypedDict):
|
|
|
758
786
|
MaxResults: NotRequired[int]
|
|
759
787
|
|
|
760
788
|
|
|
789
|
+
class ManagedLoggingConfigurationTypeDef(TypedDict):
|
|
790
|
+
Enabled: bool
|
|
791
|
+
KmsKey: NotRequired[str]
|
|
792
|
+
|
|
793
|
+
|
|
761
794
|
class ManagedQueryResultsEncryptionConfigurationTypeDef(TypedDict):
|
|
762
795
|
KmsKey: str
|
|
763
796
|
|
|
764
797
|
|
|
798
|
+
class S3LoggingConfigurationTypeDef(TypedDict):
|
|
799
|
+
Enabled: bool
|
|
800
|
+
KmsKey: NotRequired[str]
|
|
801
|
+
LogLocation: NotRequired[str]
|
|
802
|
+
|
|
803
|
+
|
|
765
804
|
class QueryExecutionContextTypeDef(TypedDict):
|
|
766
805
|
Database: NotRequired[str]
|
|
767
806
|
Catalog: NotRequired[str]
|
|
@@ -796,8 +835,8 @@ class QueryRuntimeStatisticsTimelineTypeDef(TypedDict):
|
|
|
796
835
|
class QueryStagePlanNodeTypeDef(TypedDict):
|
|
797
836
|
Name: NotRequired[str]
|
|
798
837
|
Identifier: NotRequired[str]
|
|
799
|
-
Children: NotRequired[
|
|
800
|
-
RemoteSources: NotRequired[
|
|
838
|
+
Children: NotRequired[list[dict[str, Any]]]
|
|
839
|
+
RemoteSources: NotRequired[list[str]]
|
|
801
840
|
|
|
802
841
|
|
|
803
842
|
class ResultReuseByAgeConfigurationTypeDef(TypedDict):
|
|
@@ -905,25 +944,37 @@ class GetNamedQueryOutputTypeDef(TypedDict):
|
|
|
905
944
|
ResponseMetadata: ResponseMetadataTypeDef
|
|
906
945
|
|
|
907
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
|
+
|
|
908
959
|
class ImportNotebookOutputTypeDef(TypedDict):
|
|
909
960
|
NotebookId: str
|
|
910
961
|
ResponseMetadata: ResponseMetadataTypeDef
|
|
911
962
|
|
|
912
963
|
|
|
913
964
|
class ListApplicationDPUSizesOutputTypeDef(TypedDict):
|
|
914
|
-
ApplicationDPUSizes:
|
|
965
|
+
ApplicationDPUSizes: list[ApplicationDPUSizesTypeDef]
|
|
915
966
|
ResponseMetadata: ResponseMetadataTypeDef
|
|
916
967
|
NextToken: NotRequired[str]
|
|
917
968
|
|
|
918
969
|
|
|
919
970
|
class ListNamedQueriesOutputTypeDef(TypedDict):
|
|
920
|
-
NamedQueryIds:
|
|
971
|
+
NamedQueryIds: list[str]
|
|
921
972
|
ResponseMetadata: ResponseMetadataTypeDef
|
|
922
973
|
NextToken: NotRequired[str]
|
|
923
974
|
|
|
924
975
|
|
|
925
976
|
class ListQueryExecutionsOutputTypeDef(TypedDict):
|
|
926
|
-
QueryExecutionIds:
|
|
977
|
+
QueryExecutionIds: list[str]
|
|
927
978
|
ResponseMetadata: ResponseMetadataTypeDef
|
|
928
979
|
NextToken: NotRequired[str]
|
|
929
980
|
|
|
@@ -956,8 +1007,8 @@ class TerminateSessionResponseTypeDef(TypedDict):
|
|
|
956
1007
|
|
|
957
1008
|
|
|
958
1009
|
class BatchGetNamedQueryOutputTypeDef(TypedDict):
|
|
959
|
-
NamedQueries:
|
|
960
|
-
UnprocessedNamedQueryIds:
|
|
1010
|
+
NamedQueries: list[NamedQueryTypeDef]
|
|
1011
|
+
UnprocessedNamedQueryIds: list[UnprocessedNamedQueryIdTypeDef]
|
|
961
1012
|
ResponseMetadata: ResponseMetadataTypeDef
|
|
962
1013
|
|
|
963
1014
|
|
|
@@ -967,8 +1018,8 @@ class GetPreparedStatementOutputTypeDef(TypedDict):
|
|
|
967
1018
|
|
|
968
1019
|
|
|
969
1020
|
class BatchGetPreparedStatementOutputTypeDef(TypedDict):
|
|
970
|
-
PreparedStatements:
|
|
971
|
-
UnprocessedPreparedStatementNames:
|
|
1021
|
+
PreparedStatements: list[PreparedStatementTypeDef]
|
|
1022
|
+
UnprocessedPreparedStatementNames: list[UnprocessedPreparedStatementNameTypeDef]
|
|
972
1023
|
ResponseMetadata: ResponseMetadataTypeDef
|
|
973
1024
|
|
|
974
1025
|
|
|
@@ -1015,14 +1066,29 @@ class CapacityReservationTypeDef(TypedDict):
|
|
|
1015
1066
|
|
|
1016
1067
|
class CapacityAssignmentConfigurationTypeDef(TypedDict):
|
|
1017
1068
|
CapacityReservationName: NotRequired[str]
|
|
1018
|
-
CapacityAssignments: NotRequired[
|
|
1069
|
+
CapacityAssignments: NotRequired[list[CapacityAssignmentOutputTypeDef]]
|
|
1019
1070
|
|
|
1020
1071
|
|
|
1021
1072
|
CapacityAssignmentUnionTypeDef = Union[CapacityAssignmentTypeDef, CapacityAssignmentOutputTypeDef]
|
|
1022
1073
|
|
|
1023
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
|
+
|
|
1024
1090
|
class ResultSetMetadataTypeDef(TypedDict):
|
|
1025
|
-
ColumnInfo: NotRequired[
|
|
1091
|
+
ColumnInfo: NotRequired[list[ColumnInfoTypeDef]]
|
|
1026
1092
|
|
|
1027
1093
|
|
|
1028
1094
|
class TableMetadataTypeDef(TypedDict):
|
|
@@ -1030,9 +1096,9 @@ class TableMetadataTypeDef(TypedDict):
|
|
|
1030
1096
|
CreateTime: NotRequired[datetime]
|
|
1031
1097
|
LastAccessTime: NotRequired[datetime]
|
|
1032
1098
|
TableType: NotRequired[str]
|
|
1033
|
-
Columns: NotRequired[
|
|
1034
|
-
PartitionKeys: NotRequired[
|
|
1035
|
-
Parameters: NotRequired[
|
|
1099
|
+
Columns: NotRequired[list[ColumnTypeDef]]
|
|
1100
|
+
PartitionKeys: NotRequired[list[ColumnTypeDef]]
|
|
1101
|
+
Parameters: NotRequired[dict[str, str]]
|
|
1036
1102
|
|
|
1037
1103
|
|
|
1038
1104
|
class CreateCapacityReservationInputTypeDef(TypedDict):
|
|
@@ -1054,7 +1120,7 @@ CreateDataCatalogInputTypeDef = TypedDict(
|
|
|
1054
1120
|
|
|
1055
1121
|
|
|
1056
1122
|
class ListTagsForResourceOutputTypeDef(TypedDict):
|
|
1057
|
-
Tags:
|
|
1123
|
+
Tags: list[TagTypeDef]
|
|
1058
1124
|
ResponseMetadata: ResponseMetadataTypeDef
|
|
1059
1125
|
NextToken: NotRequired[str]
|
|
1060
1126
|
|
|
@@ -1080,7 +1146,7 @@ class GetDataCatalogOutputTypeDef(TypedDict):
|
|
|
1080
1146
|
|
|
1081
1147
|
|
|
1082
1148
|
class ListDataCatalogsOutputTypeDef(TypedDict):
|
|
1083
|
-
DataCatalogsSummary:
|
|
1149
|
+
DataCatalogsSummary: list[DataCatalogSummaryTypeDef]
|
|
1084
1150
|
ResponseMetadata: ResponseMetadataTypeDef
|
|
1085
1151
|
NextToken: NotRequired[str]
|
|
1086
1152
|
|
|
@@ -1091,13 +1157,13 @@ class GetDatabaseOutputTypeDef(TypedDict):
|
|
|
1091
1157
|
|
|
1092
1158
|
|
|
1093
1159
|
class ListDatabasesOutputTypeDef(TypedDict):
|
|
1094
|
-
DatabaseList:
|
|
1160
|
+
DatabaseList: list[DatabaseTypeDef]
|
|
1095
1161
|
ResponseMetadata: ResponseMetadataTypeDef
|
|
1096
1162
|
NextToken: NotRequired[str]
|
|
1097
1163
|
|
|
1098
1164
|
|
|
1099
1165
|
class RowTypeDef(TypedDict):
|
|
1100
|
-
Data: NotRequired[
|
|
1166
|
+
Data: NotRequired[list[DatumTypeDef]]
|
|
1101
1167
|
|
|
1102
1168
|
|
|
1103
1169
|
class ResultConfigurationTypeDef(TypedDict):
|
|
@@ -1122,16 +1188,12 @@ class SessionConfigurationTypeDef(TypedDict):
|
|
|
1122
1188
|
ExecutionRole: NotRequired[str]
|
|
1123
1189
|
WorkingDirectory: NotRequired[str]
|
|
1124
1190
|
IdleTimeoutSeconds: NotRequired[int]
|
|
1191
|
+
SessionIdleTimeoutInMinutes: NotRequired[int]
|
|
1125
1192
|
EncryptionConfiguration: NotRequired[EncryptionConfigurationTypeDef]
|
|
1126
1193
|
|
|
1127
1194
|
|
|
1128
|
-
EngineConfigurationUnionTypeDef = Union[
|
|
1129
|
-
EngineConfigurationTypeDef, EngineConfigurationOutputTypeDef
|
|
1130
|
-
]
|
|
1131
|
-
|
|
1132
|
-
|
|
1133
1195
|
class ListEngineVersionsOutputTypeDef(TypedDict):
|
|
1134
|
-
EngineVersions:
|
|
1196
|
+
EngineVersions: list[EngineVersionTypeDef]
|
|
1135
1197
|
ResponseMetadata: ResponseMetadataTypeDef
|
|
1136
1198
|
NextToken: NotRequired[str]
|
|
1137
1199
|
|
|
@@ -1147,7 +1209,7 @@ class WorkGroupSummaryTypeDef(TypedDict):
|
|
|
1147
1209
|
|
|
1148
1210
|
class ListExecutorsResponseTypeDef(TypedDict):
|
|
1149
1211
|
SessionId: str
|
|
1150
|
-
ExecutorsSummary:
|
|
1212
|
+
ExecutorsSummary: list[ExecutorsSummaryTypeDef]
|
|
1151
1213
|
ResponseMetadata: ResponseMetadataTypeDef
|
|
1152
1214
|
NextToken: NotRequired[str]
|
|
1153
1215
|
|
|
@@ -1164,7 +1226,7 @@ class GetNotebookMetadataOutputTypeDef(TypedDict):
|
|
|
1164
1226
|
|
|
1165
1227
|
|
|
1166
1228
|
class ListNotebookMetadataOutputTypeDef(TypedDict):
|
|
1167
|
-
NotebookMetadataList:
|
|
1229
|
+
NotebookMetadataList: list[NotebookMetadataTypeDef]
|
|
1168
1230
|
ResponseMetadata: ResponseMetadataTypeDef
|
|
1169
1231
|
NextToken: NotRequired[str]
|
|
1170
1232
|
|
|
@@ -1231,13 +1293,13 @@ class SessionSummaryTypeDef(TypedDict):
|
|
|
1231
1293
|
|
|
1232
1294
|
|
|
1233
1295
|
class ListNotebookSessionsResponseTypeDef(TypedDict):
|
|
1234
|
-
NotebookSessionsList:
|
|
1296
|
+
NotebookSessionsList: list[NotebookSessionSummaryTypeDef]
|
|
1235
1297
|
ResponseMetadata: ResponseMetadataTypeDef
|
|
1236
1298
|
NextToken: NotRequired[str]
|
|
1237
1299
|
|
|
1238
1300
|
|
|
1239
1301
|
class ListPreparedStatementsOutputTypeDef(TypedDict):
|
|
1240
|
-
PreparedStatements:
|
|
1302
|
+
PreparedStatements: list[PreparedStatementSummaryTypeDef]
|
|
1241
1303
|
ResponseMetadata: ResponseMetadataTypeDef
|
|
1242
1304
|
NextToken: NotRequired[str]
|
|
1243
1305
|
|
|
@@ -1253,6 +1315,12 @@ class ManagedQueryResultsConfigurationUpdatesTypeDef(TypedDict):
|
|
|
1253
1315
|
RemoveEncryptionConfiguration: NotRequired[bool]
|
|
1254
1316
|
|
|
1255
1317
|
|
|
1318
|
+
class MonitoringConfigurationOutputTypeDef(TypedDict):
|
|
1319
|
+
CloudWatchLoggingConfiguration: NotRequired[CloudWatchLoggingConfigurationOutputTypeDef]
|
|
1320
|
+
ManagedLoggingConfiguration: NotRequired[ManagedLoggingConfigurationTypeDef]
|
|
1321
|
+
S3LoggingConfiguration: NotRequired[S3LoggingConfigurationTypeDef]
|
|
1322
|
+
|
|
1323
|
+
|
|
1256
1324
|
class QueryExecutionStatisticsTypeDef(TypedDict):
|
|
1257
1325
|
EngineExecutionTimeInMillis: NotRequired[int]
|
|
1258
1326
|
DataScannedInBytes: NotRequired[int]
|
|
@@ -1263,6 +1331,7 @@ class QueryExecutionStatisticsTypeDef(TypedDict):
|
|
|
1263
1331
|
QueryPlanningTimeInMillis: NotRequired[int]
|
|
1264
1332
|
ServiceProcessingTimeInMillis: NotRequired[int]
|
|
1265
1333
|
ResultReuseInformation: NotRequired[ResultReuseInformationTypeDef]
|
|
1334
|
+
DpuCount: NotRequired[float]
|
|
1266
1335
|
|
|
1267
1336
|
|
|
1268
1337
|
class QueryStageTypeDef(TypedDict):
|
|
@@ -1274,7 +1343,7 @@ class QueryStageTypeDef(TypedDict):
|
|
|
1274
1343
|
InputRows: NotRequired[int]
|
|
1275
1344
|
ExecutionTime: NotRequired[int]
|
|
1276
1345
|
QueryStagePlan: NotRequired[QueryStagePlanNodeTypeDef]
|
|
1277
|
-
SubStages: NotRequired[
|
|
1346
|
+
SubStages: NotRequired[list[dict[str, Any]]]
|
|
1278
1347
|
|
|
1279
1348
|
|
|
1280
1349
|
class ResultReuseConfigurationTypeDef(TypedDict):
|
|
@@ -1282,7 +1351,7 @@ class ResultReuseConfigurationTypeDef(TypedDict):
|
|
|
1282
1351
|
|
|
1283
1352
|
|
|
1284
1353
|
class ListCalculationExecutionsResponseTypeDef(TypedDict):
|
|
1285
|
-
Calculations:
|
|
1354
|
+
Calculations: list[CalculationSummaryTypeDef]
|
|
1286
1355
|
ResponseMetadata: ResponseMetadataTypeDef
|
|
1287
1356
|
NextToken: NotRequired[str]
|
|
1288
1357
|
|
|
@@ -1293,7 +1362,7 @@ class GetCapacityReservationOutputTypeDef(TypedDict):
|
|
|
1293
1362
|
|
|
1294
1363
|
|
|
1295
1364
|
class ListCapacityReservationsOutputTypeDef(TypedDict):
|
|
1296
|
-
CapacityReservations:
|
|
1365
|
+
CapacityReservations: list[CapacityReservationTypeDef]
|
|
1297
1366
|
ResponseMetadata: ResponseMetadataTypeDef
|
|
1298
1367
|
NextToken: NotRequired[str]
|
|
1299
1368
|
|
|
@@ -1308,22 +1377,49 @@ class PutCapacityAssignmentConfigurationInputTypeDef(TypedDict):
|
|
|
1308
1377
|
CapacityAssignments: Sequence[CapacityAssignmentUnionTypeDef]
|
|
1309
1378
|
|
|
1310
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
|
+
|
|
1311
1395
|
class GetTableMetadataOutputTypeDef(TypedDict):
|
|
1312
1396
|
TableMetadata: TableMetadataTypeDef
|
|
1313
1397
|
ResponseMetadata: ResponseMetadataTypeDef
|
|
1314
1398
|
|
|
1315
1399
|
|
|
1316
1400
|
class ListTableMetadataOutputTypeDef(TypedDict):
|
|
1317
|
-
TableMetadataList:
|
|
1401
|
+
TableMetadataList: list[TableMetadataTypeDef]
|
|
1318
1402
|
ResponseMetadata: ResponseMetadataTypeDef
|
|
1319
1403
|
NextToken: NotRequired[str]
|
|
1320
1404
|
|
|
1321
1405
|
|
|
1322
1406
|
class ResultSetTypeDef(TypedDict):
|
|
1323
|
-
Rows: NotRequired[
|
|
1407
|
+
Rows: NotRequired[list[RowTypeDef]]
|
|
1324
1408
|
ResultSetMetadata: NotRequired[ResultSetMetadataTypeDef]
|
|
1325
1409
|
|
|
1326
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
|
+
|
|
1327
1423
|
class GetSessionResponseTypeDef(TypedDict):
|
|
1328
1424
|
SessionId: str
|
|
1329
1425
|
Description: str
|
|
@@ -1331,34 +1427,14 @@ class GetSessionResponseTypeDef(TypedDict):
|
|
|
1331
1427
|
EngineVersion: str
|
|
1332
1428
|
EngineConfiguration: EngineConfigurationOutputTypeDef
|
|
1333
1429
|
NotebookVersion: str
|
|
1430
|
+
MonitoringConfiguration: MonitoringConfigurationOutputTypeDef
|
|
1334
1431
|
SessionConfiguration: SessionConfigurationTypeDef
|
|
1335
1432
|
Status: SessionStatusTypeDef
|
|
1336
1433
|
Statistics: SessionStatisticsTypeDef
|
|
1337
1434
|
ResponseMetadata: ResponseMetadataTypeDef
|
|
1338
1435
|
|
|
1339
1436
|
|
|
1340
|
-
class
|
|
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
|
-
|
|
1361
|
-
class WorkGroupConfigurationTypeDef(TypedDict):
|
|
1437
|
+
class WorkGroupConfigurationOutputTypeDef(TypedDict):
|
|
1362
1438
|
ResultConfiguration: NotRequired[ResultConfigurationTypeDef]
|
|
1363
1439
|
ManagedQueryResultsConfiguration: NotRequired[ManagedQueryResultsConfigurationTypeDef]
|
|
1364
1440
|
EnforceWorkGroupConfiguration: NotRequired[bool]
|
|
@@ -1368,6 +1444,8 @@ class WorkGroupConfigurationTypeDef(TypedDict):
|
|
|
1368
1444
|
EngineVersion: NotRequired[EngineVersionTypeDef]
|
|
1369
1445
|
AdditionalConfiguration: NotRequired[str]
|
|
1370
1446
|
ExecutionRole: NotRequired[str]
|
|
1447
|
+
MonitoringConfiguration: NotRequired[MonitoringConfigurationOutputTypeDef]
|
|
1448
|
+
EngineConfiguration: NotRequired[EngineConfigurationOutputTypeDef]
|
|
1371
1449
|
CustomerContentEncryptionConfiguration: NotRequired[
|
|
1372
1450
|
CustomerContentEncryptionConfigurationTypeDef
|
|
1373
1451
|
]
|
|
@@ -1378,29 +1456,6 @@ class WorkGroupConfigurationTypeDef(TypedDict):
|
|
|
1378
1456
|
]
|
|
1379
1457
|
|
|
1380
1458
|
|
|
1381
|
-
class WorkGroupConfigurationUpdatesTypeDef(TypedDict):
|
|
1382
|
-
EnforceWorkGroupConfiguration: NotRequired[bool]
|
|
1383
|
-
ResultConfigurationUpdates: NotRequired[ResultConfigurationUpdatesTypeDef]
|
|
1384
|
-
ManagedQueryResultsConfigurationUpdates: NotRequired[
|
|
1385
|
-
ManagedQueryResultsConfigurationUpdatesTypeDef
|
|
1386
|
-
]
|
|
1387
|
-
PublishCloudWatchMetricsEnabled: NotRequired[bool]
|
|
1388
|
-
BytesScannedCutoffPerQuery: NotRequired[int]
|
|
1389
|
-
RemoveBytesScannedCutoffPerQuery: NotRequired[bool]
|
|
1390
|
-
RequesterPaysEnabled: NotRequired[bool]
|
|
1391
|
-
EngineVersion: NotRequired[EngineVersionTypeDef]
|
|
1392
|
-
RemoveCustomerContentEncryptionConfiguration: NotRequired[bool]
|
|
1393
|
-
AdditionalConfiguration: NotRequired[str]
|
|
1394
|
-
ExecutionRole: NotRequired[str]
|
|
1395
|
-
CustomerContentEncryptionConfiguration: NotRequired[
|
|
1396
|
-
CustomerContentEncryptionConfigurationTypeDef
|
|
1397
|
-
]
|
|
1398
|
-
EnableMinimumEncryptionConfiguration: NotRequired[bool]
|
|
1399
|
-
QueryResultsS3AccessGrantsConfiguration: NotRequired[
|
|
1400
|
-
QueryResultsS3AccessGrantsConfigurationTypeDef
|
|
1401
|
-
]
|
|
1402
|
-
|
|
1403
|
-
|
|
1404
1459
|
class QueryRuntimeStatisticsTypeDef(TypedDict):
|
|
1405
1460
|
Timeline: NotRequired[QueryRuntimeStatisticsTimelineTypeDef]
|
|
1406
1461
|
Rows: NotRequired[QueryRuntimeStatisticsRowsTypeDef]
|
|
@@ -1419,21 +1474,41 @@ class QueryExecutionTypeDef(TypedDict):
|
|
|
1419
1474
|
Statistics: NotRequired[QueryExecutionStatisticsTypeDef]
|
|
1420
1475
|
WorkGroup: NotRequired[str]
|
|
1421
1476
|
EngineVersion: NotRequired[EngineVersionTypeDef]
|
|
1422
|
-
ExecutionParameters: NotRequired[
|
|
1477
|
+
ExecutionParameters: NotRequired[list[str]]
|
|
1423
1478
|
SubstatementType: NotRequired[str]
|
|
1424
1479
|
QueryResultsS3AccessGrantsConfiguration: NotRequired[
|
|
1425
1480
|
QueryResultsS3AccessGrantsConfigurationTypeDef
|
|
1426
1481
|
]
|
|
1427
1482
|
|
|
1428
1483
|
|
|
1429
|
-
|
|
1430
|
-
|
|
1431
|
-
|
|
1432
|
-
|
|
1484
|
+
EngineConfigurationUnionTypeDef = Union[
|
|
1485
|
+
EngineConfigurationTypeDef, EngineConfigurationOutputTypeDef
|
|
1486
|
+
]
|
|
1487
|
+
MonitoringConfigurationUnionTypeDef = Union[
|
|
1488
|
+
MonitoringConfigurationTypeDef, MonitoringConfigurationOutputTypeDef
|
|
1489
|
+
]
|
|
1490
|
+
|
|
1491
|
+
|
|
1492
|
+
class WorkGroupConfigurationTypeDef(TypedDict):
|
|
1433
1493
|
ResultConfiguration: NotRequired[ResultConfigurationTypeDef]
|
|
1434
|
-
|
|
1435
|
-
|
|
1436
|
-
|
|
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
|
+
]
|
|
1437
1512
|
|
|
1438
1513
|
|
|
1439
1514
|
class GetQueryResultsOutputTypeDef(TypedDict):
|
|
@@ -1443,37 +1518,23 @@ class GetQueryResultsOutputTypeDef(TypedDict):
|
|
|
1443
1518
|
NextToken: NotRequired[str]
|
|
1444
1519
|
|
|
1445
1520
|
|
|
1446
|
-
class CreateWorkGroupInputTypeDef(TypedDict):
|
|
1447
|
-
Name: str
|
|
1448
|
-
Configuration: NotRequired[WorkGroupConfigurationTypeDef]
|
|
1449
|
-
Description: NotRequired[str]
|
|
1450
|
-
Tags: NotRequired[Sequence[TagTypeDef]]
|
|
1451
|
-
|
|
1452
|
-
|
|
1453
1521
|
class WorkGroupTypeDef(TypedDict):
|
|
1454
1522
|
Name: str
|
|
1455
1523
|
State: NotRequired[WorkGroupStateType]
|
|
1456
|
-
Configuration: NotRequired[
|
|
1524
|
+
Configuration: NotRequired[WorkGroupConfigurationOutputTypeDef]
|
|
1457
1525
|
Description: NotRequired[str]
|
|
1458
1526
|
CreationTime: NotRequired[datetime]
|
|
1459
1527
|
IdentityCenterApplicationArn: NotRequired[str]
|
|
1460
1528
|
|
|
1461
1529
|
|
|
1462
|
-
class UpdateWorkGroupInputTypeDef(TypedDict):
|
|
1463
|
-
WorkGroup: str
|
|
1464
|
-
Description: NotRequired[str]
|
|
1465
|
-
ConfigurationUpdates: NotRequired[WorkGroupConfigurationUpdatesTypeDef]
|
|
1466
|
-
State: NotRequired[WorkGroupStateType]
|
|
1467
|
-
|
|
1468
|
-
|
|
1469
1530
|
class GetQueryRuntimeStatisticsOutputTypeDef(TypedDict):
|
|
1470
1531
|
QueryRuntimeStatistics: QueryRuntimeStatisticsTypeDef
|
|
1471
1532
|
ResponseMetadata: ResponseMetadataTypeDef
|
|
1472
1533
|
|
|
1473
1534
|
|
|
1474
1535
|
class BatchGetQueryExecutionOutputTypeDef(TypedDict):
|
|
1475
|
-
QueryExecutions:
|
|
1476
|
-
UnprocessedQueryExecutionIds:
|
|
1536
|
+
QueryExecutions: list[QueryExecutionTypeDef]
|
|
1537
|
+
UnprocessedQueryExecutionIds: list[UnprocessedQueryExecutionIdTypeDef]
|
|
1477
1538
|
ResponseMetadata: ResponseMetadataTypeDef
|
|
1478
1539
|
|
|
1479
1540
|
|
|
@@ -1482,6 +1543,74 @@ class GetQueryExecutionOutputTypeDef(TypedDict):
|
|
|
1482
1543
|
ResponseMetadata: ResponseMetadataTypeDef
|
|
1483
1544
|
|
|
1484
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
|
+
|
|
1485
1600
|
class GetWorkGroupOutputTypeDef(TypedDict):
|
|
1486
1601
|
WorkGroup: WorkGroupTypeDef
|
|
1487
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]]
|