types-boto3-batch 1.40.36__py3-none-any.whl → 1.40.71__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.
- types_boto3_batch/__main__.py +4 -4
- types_boto3_batch/client.py +16 -21
- types_boto3_batch/client.pyi +16 -21
- types_boto3_batch/literals.py +1 -7
- types_boto3_batch/literals.pyi +1 -7
- types_boto3_batch/type_defs.py +118 -123
- types_boto3_batch/type_defs.pyi +118 -123
- types_boto3_batch/version.py +1 -1
- {types_boto3_batch-1.40.36.dist-info → types_boto3_batch-1.40.71.dist-info}/METADATA +11 -25
- types_boto3_batch-1.40.71.dist-info/RECORD +18 -0
- types_boto3_batch-1.40.36.dist-info/RECORD +0 -18
- {types_boto3_batch-1.40.36.dist-info → types_boto3_batch-1.40.71.dist-info}/WHEEL +0 -0
- {types_boto3_batch-1.40.36.dist-info → types_boto3_batch-1.40.71.dist-info}/licenses/LICENSE +0 -0
- {types_boto3_batch-1.40.36.dist-info → types_boto3_batch-1.40.71.dist-info}/top_level.txt +0 -0
types_boto3_batch/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 typing import Union
|
|
21
22
|
|
|
22
23
|
from .literals import (
|
|
@@ -50,12 +51,6 @@ from .literals import (
|
|
|
50
51
|
UserdataTypeType,
|
|
51
52
|
)
|
|
52
53
|
|
|
53
|
-
if sys.version_info >= (3, 9):
|
|
54
|
-
from builtins import dict as Dict
|
|
55
|
-
from builtins import list as List
|
|
56
|
-
from collections.abc import Mapping, Sequence
|
|
57
|
-
else:
|
|
58
|
-
from typing import Dict, List, Mapping, Sequence
|
|
59
54
|
if sys.version_info >= (3, 12):
|
|
60
55
|
from typing import Literal, NotRequired, TypedDict
|
|
61
56
|
else:
|
|
@@ -288,7 +283,7 @@ __all__ = (
|
|
|
288
283
|
|
|
289
284
|
|
|
290
285
|
class ArrayPropertiesDetailTypeDef(TypedDict):
|
|
291
|
-
statusSummary: NotRequired[
|
|
286
|
+
statusSummary: NotRequired[dict[str, int]]
|
|
292
287
|
size: NotRequired[int]
|
|
293
288
|
index: NotRequired[int]
|
|
294
289
|
|
|
@@ -412,7 +407,7 @@ class ContainerSummaryTypeDef(TypedDict):
|
|
|
412
407
|
class ResponseMetadataTypeDef(TypedDict):
|
|
413
408
|
RequestId: str
|
|
414
409
|
HTTPStatusCode: int
|
|
415
|
-
HTTPHeaders:
|
|
410
|
+
HTTPHeaders: dict[str, str]
|
|
416
411
|
RetryAttempts: int
|
|
417
412
|
HostId: NotRequired[str]
|
|
418
413
|
|
|
@@ -515,7 +510,7 @@ class ServiceJobTimeoutTypeDef(TypedDict):
|
|
|
515
510
|
class DeviceOutputTypeDef(TypedDict):
|
|
516
511
|
hostPath: str
|
|
517
512
|
containerPath: NotRequired[str]
|
|
518
|
-
permissions: NotRequired[
|
|
513
|
+
permissions: NotRequired[list[DeviceCgroupPermissionType]]
|
|
519
514
|
|
|
520
515
|
|
|
521
516
|
class DeviceTypeDef(TypedDict):
|
|
@@ -542,8 +537,8 @@ class EksContainerEnvironmentVariableTypeDef(TypedDict):
|
|
|
542
537
|
|
|
543
538
|
|
|
544
539
|
class EksContainerResourceRequirementsOutputTypeDef(TypedDict):
|
|
545
|
-
limits: NotRequired[
|
|
546
|
-
requests: NotRequired[
|
|
540
|
+
limits: NotRequired[dict[str, str]]
|
|
541
|
+
requests: NotRequired[dict[str, str]]
|
|
547
542
|
|
|
548
543
|
|
|
549
544
|
class EksContainerSecurityContextTypeDef(TypedDict):
|
|
@@ -577,8 +572,8 @@ class EksHostPathTypeDef(TypedDict):
|
|
|
577
572
|
|
|
578
573
|
|
|
579
574
|
class EksMetadataOutputTypeDef(TypedDict):
|
|
580
|
-
labels: NotRequired[
|
|
581
|
-
annotations: NotRequired[
|
|
575
|
+
labels: NotRequired[dict[str, str]]
|
|
576
|
+
annotations: NotRequired[dict[str, str]]
|
|
582
577
|
namespace: NotRequired[str]
|
|
583
578
|
|
|
584
579
|
|
|
@@ -618,7 +613,7 @@ FirelensConfigurationOutputTypeDef = TypedDict(
|
|
|
618
613
|
"FirelensConfigurationOutputTypeDef",
|
|
619
614
|
{
|
|
620
615
|
"type": FirelensConfigurationTypeType,
|
|
621
|
-
"options": NotRequired[
|
|
616
|
+
"options": NotRequired[dict[str, str]],
|
|
622
617
|
},
|
|
623
618
|
)
|
|
624
619
|
FirelensConfigurationTypeDef = TypedDict(
|
|
@@ -681,7 +676,7 @@ class LaunchTemplateSpecificationOverrideOutputTypeDef(TypedDict):
|
|
|
681
676
|
launchTemplateId: NotRequired[str]
|
|
682
677
|
launchTemplateName: NotRequired[str]
|
|
683
678
|
version: NotRequired[str]
|
|
684
|
-
targetInstanceTypes: NotRequired[
|
|
679
|
+
targetInstanceTypes: NotRequired[list[str]]
|
|
685
680
|
userdataType: NotRequired[UserdataTypeType]
|
|
686
681
|
|
|
687
682
|
|
|
@@ -696,7 +691,7 @@ class LaunchTemplateSpecificationOverrideTypeDef(TypedDict):
|
|
|
696
691
|
class TmpfsOutputTypeDef(TypedDict):
|
|
697
692
|
containerPath: str
|
|
698
693
|
size: int
|
|
699
|
-
mountOptions: NotRequired[
|
|
694
|
+
mountOptions: NotRequired[list[str]]
|
|
700
695
|
|
|
701
696
|
|
|
702
697
|
class TmpfsTypeDef(TypedDict):
|
|
@@ -761,7 +756,7 @@ class AttemptContainerDetailTypeDef(TypedDict):
|
|
|
761
756
|
exitCode: NotRequired[int]
|
|
762
757
|
reason: NotRequired[str]
|
|
763
758
|
logStreamName: NotRequired[str]
|
|
764
|
-
networkInterfaces: NotRequired[
|
|
759
|
+
networkInterfaces: NotRequired[list[NetworkInterfaceTypeDef]]
|
|
765
760
|
|
|
766
761
|
|
|
767
762
|
class AttemptTaskContainerDetailsTypeDef(TypedDict):
|
|
@@ -769,7 +764,7 @@ class AttemptTaskContainerDetailsTypeDef(TypedDict):
|
|
|
769
764
|
name: NotRequired[str]
|
|
770
765
|
reason: NotRequired[str]
|
|
771
766
|
logStreamName: NotRequired[str]
|
|
772
|
-
networkInterfaces: NotRequired[
|
|
767
|
+
networkInterfaces: NotRequired[list[NetworkInterfaceTypeDef]]
|
|
773
768
|
|
|
774
769
|
|
|
775
770
|
class CreateServiceEnvironmentRequestTypeDef(TypedDict):
|
|
@@ -784,10 +779,10 @@ class ServiceEnvironmentDetailTypeDef(TypedDict):
|
|
|
784
779
|
serviceEnvironmentName: str
|
|
785
780
|
serviceEnvironmentArn: str
|
|
786
781
|
serviceEnvironmentType: Literal["SAGEMAKER_TRAINING"]
|
|
787
|
-
capacityLimits:
|
|
782
|
+
capacityLimits: list[CapacityLimitTypeDef]
|
|
788
783
|
state: NotRequired[ServiceEnvironmentStateType]
|
|
789
784
|
status: NotRequired[ServiceEnvironmentStatusType]
|
|
790
|
-
tags: NotRequired[
|
|
785
|
+
tags: NotRequired[dict[str, str]]
|
|
791
786
|
|
|
792
787
|
|
|
793
788
|
class UpdateServiceEnvironmentRequestTypeDef(TypedDict):
|
|
@@ -797,7 +792,7 @@ class UpdateServiceEnvironmentRequestTypeDef(TypedDict):
|
|
|
797
792
|
|
|
798
793
|
|
|
799
794
|
class ConsumableResourcePropertiesOutputTypeDef(TypedDict):
|
|
800
|
-
consumableResourceList: NotRequired[
|
|
795
|
+
consumableResourceList: NotRequired[list[ConsumableResourceRequirementTypeDef]]
|
|
801
796
|
|
|
802
797
|
|
|
803
798
|
class ConsumableResourcePropertiesTypeDef(TypedDict):
|
|
@@ -822,8 +817,8 @@ class TaskContainerOverridesTypeDef(TypedDict):
|
|
|
822
817
|
|
|
823
818
|
class LogConfigurationOutputTypeDef(TypedDict):
|
|
824
819
|
logDriver: LogDriverType
|
|
825
|
-
options: NotRequired[
|
|
826
|
-
secretOptions: NotRequired[
|
|
820
|
+
options: NotRequired[dict[str, str]]
|
|
821
|
+
secretOptions: NotRequired[list[SecretTypeDef]]
|
|
827
822
|
|
|
828
823
|
|
|
829
824
|
class LogConfigurationTypeDef(TypedDict):
|
|
@@ -870,18 +865,18 @@ class DescribeConsumableResourceResponseTypeDef(TypedDict):
|
|
|
870
865
|
availableQuantity: int
|
|
871
866
|
resourceType: str
|
|
872
867
|
createdAt: int
|
|
873
|
-
tags:
|
|
868
|
+
tags: dict[str, str]
|
|
874
869
|
ResponseMetadata: ResponseMetadataTypeDef
|
|
875
870
|
|
|
876
871
|
|
|
877
872
|
class ListConsumableResourcesResponseTypeDef(TypedDict):
|
|
878
|
-
consumableResources:
|
|
873
|
+
consumableResources: list[ConsumableResourceSummaryTypeDef]
|
|
879
874
|
ResponseMetadata: ResponseMetadataTypeDef
|
|
880
875
|
nextToken: NotRequired[str]
|
|
881
876
|
|
|
882
877
|
|
|
883
878
|
class ListTagsForResourceResponseTypeDef(TypedDict):
|
|
884
|
-
tags:
|
|
879
|
+
tags: dict[str, str]
|
|
885
880
|
ResponseMetadata: ResponseMetadataTypeDef
|
|
886
881
|
|
|
887
882
|
|
|
@@ -948,14 +943,14 @@ class JobQueueDetailTypeDef(TypedDict):
|
|
|
948
943
|
jobQueueArn: str
|
|
949
944
|
state: JQStateType
|
|
950
945
|
priority: int
|
|
951
|
-
computeEnvironmentOrder:
|
|
946
|
+
computeEnvironmentOrder: list[ComputeEnvironmentOrderTypeDef]
|
|
952
947
|
schedulingPolicyArn: NotRequired[str]
|
|
953
948
|
status: NotRequired[JQStatusType]
|
|
954
949
|
statusReason: NotRequired[str]
|
|
955
|
-
serviceEnvironmentOrder: NotRequired[
|
|
950
|
+
serviceEnvironmentOrder: NotRequired[list[ServiceEnvironmentOrderTypeDef]]
|
|
956
951
|
jobQueueType: NotRequired[JobQueueTypeType]
|
|
957
|
-
tags: NotRequired[
|
|
958
|
-
jobStateTimeLimitActions: NotRequired[
|
|
952
|
+
tags: NotRequired[dict[str, str]]
|
|
953
|
+
jobStateTimeLimitActions: NotRequired[list[JobStateTimeLimitActionTypeDef]]
|
|
959
954
|
|
|
960
955
|
|
|
961
956
|
class UpdateJobQueueRequestTypeDef(TypedDict):
|
|
@@ -1003,8 +998,8 @@ class EFSVolumeConfigurationTypeDef(TypedDict):
|
|
|
1003
998
|
|
|
1004
999
|
|
|
1005
1000
|
class EksAttemptDetailTypeDef(TypedDict):
|
|
1006
|
-
containers: NotRequired[
|
|
1007
|
-
initContainers: NotRequired[
|
|
1001
|
+
containers: NotRequired[list[EksAttemptContainerDetailTypeDef]]
|
|
1002
|
+
initContainers: NotRequired[list[EksAttemptContainerDetailTypeDef]]
|
|
1008
1003
|
eksClusterArn: NotRequired[str]
|
|
1009
1004
|
podName: NotRequired[str]
|
|
1010
1005
|
podNamespace: NotRequired[str]
|
|
@@ -1018,13 +1013,13 @@ class EksContainerDetailTypeDef(TypedDict):
|
|
|
1018
1013
|
name: NotRequired[str]
|
|
1019
1014
|
image: NotRequired[str]
|
|
1020
1015
|
imagePullPolicy: NotRequired[str]
|
|
1021
|
-
command: NotRequired[
|
|
1022
|
-
args: NotRequired[
|
|
1023
|
-
env: NotRequired[
|
|
1016
|
+
command: NotRequired[list[str]]
|
|
1017
|
+
args: NotRequired[list[str]]
|
|
1018
|
+
env: NotRequired[list[EksContainerEnvironmentVariableTypeDef]]
|
|
1024
1019
|
resources: NotRequired[EksContainerResourceRequirementsOutputTypeDef]
|
|
1025
1020
|
exitCode: NotRequired[int]
|
|
1026
1021
|
reason: NotRequired[str]
|
|
1027
|
-
volumeMounts: NotRequired[
|
|
1022
|
+
volumeMounts: NotRequired[list[EksContainerVolumeMountTypeDef]]
|
|
1028
1023
|
securityContext: NotRequired[EksContainerSecurityContextTypeDef]
|
|
1029
1024
|
|
|
1030
1025
|
|
|
@@ -1032,11 +1027,11 @@ class EksContainerOutputTypeDef(TypedDict):
|
|
|
1032
1027
|
image: str
|
|
1033
1028
|
name: NotRequired[str]
|
|
1034
1029
|
imagePullPolicy: NotRequired[str]
|
|
1035
|
-
command: NotRequired[
|
|
1036
|
-
args: NotRequired[
|
|
1037
|
-
env: NotRequired[
|
|
1030
|
+
command: NotRequired[list[str]]
|
|
1031
|
+
args: NotRequired[list[str]]
|
|
1032
|
+
env: NotRequired[list[EksContainerEnvironmentVariableTypeDef]]
|
|
1038
1033
|
resources: NotRequired[EksContainerResourceRequirementsOutputTypeDef]
|
|
1039
|
-
volumeMounts: NotRequired[
|
|
1034
|
+
volumeMounts: NotRequired[list[EksContainerVolumeMountTypeDef]]
|
|
1040
1035
|
securityContext: NotRequired[EksContainerSecurityContextTypeDef]
|
|
1041
1036
|
|
|
1042
1037
|
|
|
@@ -1070,7 +1065,7 @@ class EksVolumeTypeDef(TypedDict):
|
|
|
1070
1065
|
|
|
1071
1066
|
class RetryStrategyOutputTypeDef(TypedDict):
|
|
1072
1067
|
attempts: NotRequired[int]
|
|
1073
|
-
evaluateOnExit: NotRequired[
|
|
1068
|
+
evaluateOnExit: NotRequired[list[EvaluateOnExitTypeDef]]
|
|
1074
1069
|
|
|
1075
1070
|
|
|
1076
1071
|
class RetryStrategyTypeDef(TypedDict):
|
|
@@ -1081,7 +1076,7 @@ class RetryStrategyTypeDef(TypedDict):
|
|
|
1081
1076
|
class FairsharePolicyOutputTypeDef(TypedDict):
|
|
1082
1077
|
shareDecaySeconds: NotRequired[int]
|
|
1083
1078
|
computeReservation: NotRequired[int]
|
|
1084
|
-
shareDistribution: NotRequired[
|
|
1079
|
+
shareDistribution: NotRequired[list[ShareAttributesTypeDef]]
|
|
1085
1080
|
|
|
1086
1081
|
|
|
1087
1082
|
class FairsharePolicyTypeDef(TypedDict):
|
|
@@ -1091,7 +1086,7 @@ class FairsharePolicyTypeDef(TypedDict):
|
|
|
1091
1086
|
|
|
1092
1087
|
|
|
1093
1088
|
class FrontOfQueueDetailTypeDef(TypedDict):
|
|
1094
|
-
jobs: NotRequired[
|
|
1089
|
+
jobs: NotRequired[list[FrontOfQueueJobSummaryTypeDef]]
|
|
1095
1090
|
lastUpdatedAt: NotRequired[int]
|
|
1096
1091
|
|
|
1097
1092
|
|
|
@@ -1183,7 +1178,7 @@ class LaunchTemplateSpecificationOutputTypeDef(TypedDict):
|
|
|
1183
1178
|
launchTemplateId: NotRequired[str]
|
|
1184
1179
|
launchTemplateName: NotRequired[str]
|
|
1185
1180
|
version: NotRequired[str]
|
|
1186
|
-
overrides: NotRequired[
|
|
1181
|
+
overrides: NotRequired[list[LaunchTemplateSpecificationOverrideOutputTypeDef]]
|
|
1187
1182
|
userdataType: NotRequired[UserdataTypeType]
|
|
1188
1183
|
|
|
1189
1184
|
|
|
@@ -1193,10 +1188,10 @@ LaunchTemplateSpecificationOverrideUnionTypeDef = Union[
|
|
|
1193
1188
|
|
|
1194
1189
|
|
|
1195
1190
|
class LinuxParametersOutputTypeDef(TypedDict):
|
|
1196
|
-
devices: NotRequired[
|
|
1191
|
+
devices: NotRequired[list[DeviceOutputTypeDef]]
|
|
1197
1192
|
initProcessEnabled: NotRequired[bool]
|
|
1198
1193
|
sharedMemorySize: NotRequired[int]
|
|
1199
|
-
tmpfs: NotRequired[
|
|
1194
|
+
tmpfs: NotRequired[list[TmpfsOutputTypeDef]]
|
|
1200
1195
|
maxSwap: NotRequired[int]
|
|
1201
1196
|
swappiness: NotRequired[int]
|
|
1202
1197
|
|
|
@@ -1211,14 +1206,14 @@ class LinuxParametersTypeDef(TypedDict):
|
|
|
1211
1206
|
|
|
1212
1207
|
|
|
1213
1208
|
class ListSchedulingPoliciesResponseTypeDef(TypedDict):
|
|
1214
|
-
schedulingPolicies:
|
|
1209
|
+
schedulingPolicies: list[SchedulingPolicyListingDetailTypeDef]
|
|
1215
1210
|
ResponseMetadata: ResponseMetadataTypeDef
|
|
1216
1211
|
nextToken: NotRequired[str]
|
|
1217
1212
|
|
|
1218
1213
|
|
|
1219
1214
|
class ServiceJobRetryStrategyOutputTypeDef(TypedDict):
|
|
1220
1215
|
attempts: int
|
|
1221
|
-
evaluateOnExit: NotRequired[
|
|
1216
|
+
evaluateOnExit: NotRequired[list[ServiceJobEvaluateOnExitTypeDef]]
|
|
1222
1217
|
|
|
1223
1218
|
|
|
1224
1219
|
class ServiceJobRetryStrategyTypeDef(TypedDict):
|
|
@@ -1229,11 +1224,11 @@ class ServiceJobRetryStrategyTypeDef(TypedDict):
|
|
|
1229
1224
|
class AttemptEcsTaskDetailsTypeDef(TypedDict):
|
|
1230
1225
|
containerInstanceArn: NotRequired[str]
|
|
1231
1226
|
taskArn: NotRequired[str]
|
|
1232
|
-
containers: NotRequired[
|
|
1227
|
+
containers: NotRequired[list[AttemptTaskContainerDetailsTypeDef]]
|
|
1233
1228
|
|
|
1234
1229
|
|
|
1235
1230
|
class DescribeServiceEnvironmentsResponseTypeDef(TypedDict):
|
|
1236
|
-
serviceEnvironments:
|
|
1231
|
+
serviceEnvironments: list[ServiceEnvironmentDetailTypeDef]
|
|
1237
1232
|
ResponseMetadata: ResponseMetadataTypeDef
|
|
1238
1233
|
nextToken: NotRequired[str]
|
|
1239
1234
|
|
|
@@ -1262,7 +1257,7 @@ class TaskPropertiesOverrideTypeDef(TypedDict):
|
|
|
1262
1257
|
|
|
1263
1258
|
|
|
1264
1259
|
class DescribeJobQueuesResponseTypeDef(TypedDict):
|
|
1265
|
-
jobQueues:
|
|
1260
|
+
jobQueues: list[JobQueueDetailTypeDef]
|
|
1266
1261
|
ResponseMetadata: ResponseMetadataTypeDef
|
|
1267
1262
|
nextToken: NotRequired[str]
|
|
1268
1263
|
|
|
@@ -1286,10 +1281,10 @@ class EksPodPropertiesDetailTypeDef(TypedDict):
|
|
|
1286
1281
|
serviceAccountName: NotRequired[str]
|
|
1287
1282
|
hostNetwork: NotRequired[bool]
|
|
1288
1283
|
dnsPolicy: NotRequired[str]
|
|
1289
|
-
imagePullSecrets: NotRequired[
|
|
1290
|
-
containers: NotRequired[
|
|
1291
|
-
initContainers: NotRequired[
|
|
1292
|
-
volumes: NotRequired[
|
|
1284
|
+
imagePullSecrets: NotRequired[list[ImagePullSecretTypeDef]]
|
|
1285
|
+
containers: NotRequired[list[EksContainerDetailTypeDef]]
|
|
1286
|
+
initContainers: NotRequired[list[EksContainerDetailTypeDef]]
|
|
1287
|
+
volumes: NotRequired[list[EksVolumeTypeDef]]
|
|
1293
1288
|
podName: NotRequired[str]
|
|
1294
1289
|
nodeName: NotRequired[str]
|
|
1295
1290
|
metadata: NotRequired[EksMetadataOutputTypeDef]
|
|
@@ -1300,10 +1295,10 @@ class EksPodPropertiesOutputTypeDef(TypedDict):
|
|
|
1300
1295
|
serviceAccountName: NotRequired[str]
|
|
1301
1296
|
hostNetwork: NotRequired[bool]
|
|
1302
1297
|
dnsPolicy: NotRequired[str]
|
|
1303
|
-
imagePullSecrets: NotRequired[
|
|
1304
|
-
containers: NotRequired[
|
|
1305
|
-
initContainers: NotRequired[
|
|
1306
|
-
volumes: NotRequired[
|
|
1298
|
+
imagePullSecrets: NotRequired[list[ImagePullSecretTypeDef]]
|
|
1299
|
+
containers: NotRequired[list[EksContainerOutputTypeDef]]
|
|
1300
|
+
initContainers: NotRequired[list[EksContainerOutputTypeDef]]
|
|
1301
|
+
volumes: NotRequired[list[EksVolumeTypeDef]]
|
|
1307
1302
|
metadata: NotRequired[EksMetadataOutputTypeDef]
|
|
1308
1303
|
shareProcessNamespace: NotRequired[bool]
|
|
1309
1304
|
|
|
@@ -1327,7 +1322,7 @@ class SchedulingPolicyDetailTypeDef(TypedDict):
|
|
|
1327
1322
|
name: str
|
|
1328
1323
|
arn: str
|
|
1329
1324
|
fairsharePolicy: NotRequired[FairsharePolicyOutputTypeDef]
|
|
1330
|
-
tags: NotRequired[
|
|
1325
|
+
tags: NotRequired[dict[str, str]]
|
|
1331
1326
|
|
|
1332
1327
|
|
|
1333
1328
|
FairsharePolicyUnionTypeDef = Union[FairsharePolicyTypeDef, FairsharePolicyOutputTypeDef]
|
|
@@ -1339,7 +1334,7 @@ class GetJobQueueSnapshotResponseTypeDef(TypedDict):
|
|
|
1339
1334
|
|
|
1340
1335
|
|
|
1341
1336
|
class ListJobsResponseTypeDef(TypedDict):
|
|
1342
|
-
jobSummaryList:
|
|
1337
|
+
jobSummaryList: list[JobSummaryTypeDef]
|
|
1343
1338
|
ResponseMetadata: ResponseMetadataTypeDef
|
|
1344
1339
|
nextToken: NotRequired[str]
|
|
1345
1340
|
|
|
@@ -1363,21 +1358,21 @@ ComputeResourceOutputTypeDef = TypedDict(
|
|
|
1363
1358
|
{
|
|
1364
1359
|
"type": CRTypeType,
|
|
1365
1360
|
"maxvCpus": int,
|
|
1366
|
-
"subnets":
|
|
1361
|
+
"subnets": list[str],
|
|
1367
1362
|
"allocationStrategy": NotRequired[CRAllocationStrategyType],
|
|
1368
1363
|
"minvCpus": NotRequired[int],
|
|
1369
1364
|
"desiredvCpus": NotRequired[int],
|
|
1370
|
-
"instanceTypes": NotRequired[
|
|
1365
|
+
"instanceTypes": NotRequired[list[str]],
|
|
1371
1366
|
"imageId": NotRequired[str],
|
|
1372
|
-
"securityGroupIds": NotRequired[
|
|
1367
|
+
"securityGroupIds": NotRequired[list[str]],
|
|
1373
1368
|
"ec2KeyPair": NotRequired[str],
|
|
1374
1369
|
"instanceRole": NotRequired[str],
|
|
1375
|
-
"tags": NotRequired[
|
|
1370
|
+
"tags": NotRequired[dict[str, str]],
|
|
1376
1371
|
"placementGroup": NotRequired[str],
|
|
1377
1372
|
"bidPercentage": NotRequired[int],
|
|
1378
1373
|
"spotIamFleetRole": NotRequired[str],
|
|
1379
1374
|
"launchTemplate": NotRequired[LaunchTemplateSpecificationOutputTypeDef],
|
|
1380
|
-
"ec2Configuration": NotRequired[
|
|
1375
|
+
"ec2Configuration": NotRequired[list[Ec2ConfigurationTypeDef]],
|
|
1381
1376
|
},
|
|
1382
1377
|
)
|
|
1383
1378
|
|
|
@@ -1391,46 +1386,46 @@ class LaunchTemplateSpecificationTypeDef(TypedDict):
|
|
|
1391
1386
|
|
|
1392
1387
|
|
|
1393
1388
|
class TaskContainerDetailsTypeDef(TypedDict):
|
|
1394
|
-
command: NotRequired[
|
|
1395
|
-
dependsOn: NotRequired[
|
|
1396
|
-
environment: NotRequired[
|
|
1389
|
+
command: NotRequired[list[str]]
|
|
1390
|
+
dependsOn: NotRequired[list[TaskContainerDependencyTypeDef]]
|
|
1391
|
+
environment: NotRequired[list[KeyValuePairTypeDef]]
|
|
1397
1392
|
essential: NotRequired[bool]
|
|
1398
1393
|
firelensConfiguration: NotRequired[FirelensConfigurationOutputTypeDef]
|
|
1399
1394
|
image: NotRequired[str]
|
|
1400
1395
|
linuxParameters: NotRequired[LinuxParametersOutputTypeDef]
|
|
1401
1396
|
logConfiguration: NotRequired[LogConfigurationOutputTypeDef]
|
|
1402
|
-
mountPoints: NotRequired[
|
|
1397
|
+
mountPoints: NotRequired[list[MountPointTypeDef]]
|
|
1403
1398
|
name: NotRequired[str]
|
|
1404
1399
|
privileged: NotRequired[bool]
|
|
1405
1400
|
readonlyRootFilesystem: NotRequired[bool]
|
|
1406
1401
|
repositoryCredentials: NotRequired[RepositoryCredentialsTypeDef]
|
|
1407
|
-
resourceRequirements: NotRequired[
|
|
1408
|
-
secrets: NotRequired[
|
|
1409
|
-
ulimits: NotRequired[
|
|
1402
|
+
resourceRequirements: NotRequired[list[ResourceRequirementTypeDef]]
|
|
1403
|
+
secrets: NotRequired[list[SecretTypeDef]]
|
|
1404
|
+
ulimits: NotRequired[list[UlimitTypeDef]]
|
|
1410
1405
|
user: NotRequired[str]
|
|
1411
1406
|
exitCode: NotRequired[int]
|
|
1412
1407
|
reason: NotRequired[str]
|
|
1413
1408
|
logStreamName: NotRequired[str]
|
|
1414
|
-
networkInterfaces: NotRequired[
|
|
1409
|
+
networkInterfaces: NotRequired[list[NetworkInterfaceTypeDef]]
|
|
1415
1410
|
|
|
1416
1411
|
|
|
1417
1412
|
class TaskContainerPropertiesOutputTypeDef(TypedDict):
|
|
1418
1413
|
image: str
|
|
1419
|
-
command: NotRequired[
|
|
1420
|
-
dependsOn: NotRequired[
|
|
1421
|
-
environment: NotRequired[
|
|
1414
|
+
command: NotRequired[list[str]]
|
|
1415
|
+
dependsOn: NotRequired[list[TaskContainerDependencyTypeDef]]
|
|
1416
|
+
environment: NotRequired[list[KeyValuePairTypeDef]]
|
|
1422
1417
|
essential: NotRequired[bool]
|
|
1423
1418
|
firelensConfiguration: NotRequired[FirelensConfigurationOutputTypeDef]
|
|
1424
1419
|
linuxParameters: NotRequired[LinuxParametersOutputTypeDef]
|
|
1425
1420
|
logConfiguration: NotRequired[LogConfigurationOutputTypeDef]
|
|
1426
|
-
mountPoints: NotRequired[
|
|
1421
|
+
mountPoints: NotRequired[list[MountPointTypeDef]]
|
|
1427
1422
|
name: NotRequired[str]
|
|
1428
1423
|
privileged: NotRequired[bool]
|
|
1429
1424
|
readonlyRootFilesystem: NotRequired[bool]
|
|
1430
1425
|
repositoryCredentials: NotRequired[RepositoryCredentialsTypeDef]
|
|
1431
|
-
resourceRequirements: NotRequired[
|
|
1432
|
-
secrets: NotRequired[
|
|
1433
|
-
ulimits: NotRequired[
|
|
1426
|
+
resourceRequirements: NotRequired[list[ResourceRequirementTypeDef]]
|
|
1427
|
+
secrets: NotRequired[list[SecretTypeDef]]
|
|
1428
|
+
ulimits: NotRequired[list[UlimitTypeDef]]
|
|
1434
1429
|
user: NotRequired[str]
|
|
1435
1430
|
|
|
1436
1431
|
|
|
@@ -1455,7 +1450,7 @@ class TaskContainerPropertiesTypeDef(TypedDict):
|
|
|
1455
1450
|
|
|
1456
1451
|
|
|
1457
1452
|
class DescribeServiceJobResponseTypeDef(TypedDict):
|
|
1458
|
-
attempts:
|
|
1453
|
+
attempts: list[ServiceJobAttemptDetailTypeDef]
|
|
1459
1454
|
createdAt: int
|
|
1460
1455
|
isTerminated: bool
|
|
1461
1456
|
jobArn: str
|
|
@@ -1472,7 +1467,7 @@ class DescribeServiceJobResponseTypeDef(TypedDict):
|
|
|
1472
1467
|
status: ServiceJobStatusType
|
|
1473
1468
|
statusReason: str
|
|
1474
1469
|
stoppedAt: int
|
|
1475
|
-
tags:
|
|
1470
|
+
tags: dict[str, str]
|
|
1476
1471
|
timeoutConfig: ServiceJobTimeoutTypeDef
|
|
1477
1472
|
ResponseMetadata: ResponseMetadataTypeDef
|
|
1478
1473
|
|
|
@@ -1487,11 +1482,11 @@ class AttemptDetailTypeDef(TypedDict):
|
|
|
1487
1482
|
startedAt: NotRequired[int]
|
|
1488
1483
|
stoppedAt: NotRequired[int]
|
|
1489
1484
|
statusReason: NotRequired[str]
|
|
1490
|
-
taskProperties: NotRequired[
|
|
1485
|
+
taskProperties: NotRequired[list[AttemptEcsTaskDetailsTypeDef]]
|
|
1491
1486
|
|
|
1492
1487
|
|
|
1493
1488
|
class ListJobsByConsumableResourceResponseTypeDef(TypedDict):
|
|
1494
|
-
jobs:
|
|
1489
|
+
jobs: list[ListJobsByConsumableResourceSummaryTypeDef]
|
|
1495
1490
|
ResponseMetadata: ResponseMetadataTypeDef
|
|
1496
1491
|
nextToken: NotRequired[str]
|
|
1497
1492
|
|
|
@@ -1504,14 +1499,14 @@ class ContainerDetailTypeDef(TypedDict):
|
|
|
1504
1499
|
image: NotRequired[str]
|
|
1505
1500
|
vcpus: NotRequired[int]
|
|
1506
1501
|
memory: NotRequired[int]
|
|
1507
|
-
command: NotRequired[
|
|
1502
|
+
command: NotRequired[list[str]]
|
|
1508
1503
|
jobRoleArn: NotRequired[str]
|
|
1509
1504
|
executionRoleArn: NotRequired[str]
|
|
1510
|
-
volumes: NotRequired[
|
|
1511
|
-
environment: NotRequired[
|
|
1512
|
-
mountPoints: NotRequired[
|
|
1505
|
+
volumes: NotRequired[list[VolumeTypeDef]]
|
|
1506
|
+
environment: NotRequired[list[KeyValuePairTypeDef]]
|
|
1507
|
+
mountPoints: NotRequired[list[MountPointTypeDef]]
|
|
1513
1508
|
readonlyRootFilesystem: NotRequired[bool]
|
|
1514
|
-
ulimits: NotRequired[
|
|
1509
|
+
ulimits: NotRequired[list[UlimitTypeDef]]
|
|
1515
1510
|
privileged: NotRequired[bool]
|
|
1516
1511
|
user: NotRequired[str]
|
|
1517
1512
|
exitCode: NotRequired[int]
|
|
@@ -1520,11 +1515,11 @@ class ContainerDetailTypeDef(TypedDict):
|
|
|
1520
1515
|
taskArn: NotRequired[str]
|
|
1521
1516
|
logStreamName: NotRequired[str]
|
|
1522
1517
|
instanceType: NotRequired[str]
|
|
1523
|
-
networkInterfaces: NotRequired[
|
|
1524
|
-
resourceRequirements: NotRequired[
|
|
1518
|
+
networkInterfaces: NotRequired[list[NetworkInterfaceTypeDef]]
|
|
1519
|
+
resourceRequirements: NotRequired[list[ResourceRequirementTypeDef]]
|
|
1525
1520
|
linuxParameters: NotRequired[LinuxParametersOutputTypeDef]
|
|
1526
1521
|
logConfiguration: NotRequired[LogConfigurationOutputTypeDef]
|
|
1527
|
-
secrets: NotRequired[
|
|
1522
|
+
secrets: NotRequired[list[SecretTypeDef]]
|
|
1528
1523
|
networkConfiguration: NotRequired[NetworkConfigurationTypeDef]
|
|
1529
1524
|
fargatePlatformConfiguration: NotRequired[FargatePlatformConfigurationTypeDef]
|
|
1530
1525
|
ephemeralStorage: NotRequired[EphemeralStorageTypeDef]
|
|
@@ -1537,21 +1532,21 @@ class ContainerPropertiesOutputTypeDef(TypedDict):
|
|
|
1537
1532
|
image: NotRequired[str]
|
|
1538
1533
|
vcpus: NotRequired[int]
|
|
1539
1534
|
memory: NotRequired[int]
|
|
1540
|
-
command: NotRequired[
|
|
1535
|
+
command: NotRequired[list[str]]
|
|
1541
1536
|
jobRoleArn: NotRequired[str]
|
|
1542
1537
|
executionRoleArn: NotRequired[str]
|
|
1543
|
-
volumes: NotRequired[
|
|
1544
|
-
environment: NotRequired[
|
|
1545
|
-
mountPoints: NotRequired[
|
|
1538
|
+
volumes: NotRequired[list[VolumeTypeDef]]
|
|
1539
|
+
environment: NotRequired[list[KeyValuePairTypeDef]]
|
|
1540
|
+
mountPoints: NotRequired[list[MountPointTypeDef]]
|
|
1546
1541
|
readonlyRootFilesystem: NotRequired[bool]
|
|
1547
1542
|
privileged: NotRequired[bool]
|
|
1548
|
-
ulimits: NotRequired[
|
|
1543
|
+
ulimits: NotRequired[list[UlimitTypeDef]]
|
|
1549
1544
|
user: NotRequired[str]
|
|
1550
1545
|
instanceType: NotRequired[str]
|
|
1551
|
-
resourceRequirements: NotRequired[
|
|
1546
|
+
resourceRequirements: NotRequired[list[ResourceRequirementTypeDef]]
|
|
1552
1547
|
linuxParameters: NotRequired[LinuxParametersOutputTypeDef]
|
|
1553
1548
|
logConfiguration: NotRequired[LogConfigurationOutputTypeDef]
|
|
1554
|
-
secrets: NotRequired[
|
|
1549
|
+
secrets: NotRequired[list[SecretTypeDef]]
|
|
1555
1550
|
networkConfiguration: NotRequired[NetworkConfigurationTypeDef]
|
|
1556
1551
|
fargatePlatformConfiguration: NotRequired[FargatePlatformConfigurationTypeDef]
|
|
1557
1552
|
enableExecuteCommand: NotRequired[bool]
|
|
@@ -1606,7 +1601,7 @@ class EksPropertiesTypeDef(TypedDict):
|
|
|
1606
1601
|
|
|
1607
1602
|
|
|
1608
1603
|
class DescribeSchedulingPoliciesResponseTypeDef(TypedDict):
|
|
1609
|
-
schedulingPolicies:
|
|
1604
|
+
schedulingPolicies: list[SchedulingPolicyDetailTypeDef]
|
|
1610
1605
|
ResponseMetadata: ResponseMetadataTypeDef
|
|
1611
1606
|
|
|
1612
1607
|
|
|
@@ -1622,7 +1617,7 @@ class UpdateSchedulingPolicyRequestTypeDef(TypedDict):
|
|
|
1622
1617
|
|
|
1623
1618
|
|
|
1624
1619
|
class ListServiceJobsResponseTypeDef(TypedDict):
|
|
1625
|
-
jobSummaryList:
|
|
1620
|
+
jobSummaryList: list[ServiceJobSummaryTypeDef]
|
|
1626
1621
|
ResponseMetadata: ResponseMetadataTypeDef
|
|
1627
1622
|
nextToken: NotRequired[str]
|
|
1628
1623
|
|
|
@@ -1634,7 +1629,7 @@ ComputeEnvironmentDetailTypeDef = TypedDict(
|
|
|
1634
1629
|
"computeEnvironmentArn": str,
|
|
1635
1630
|
"unmanagedvCpus": NotRequired[int],
|
|
1636
1631
|
"ecsClusterArn": NotRequired[str],
|
|
1637
|
-
"tags": NotRequired[
|
|
1632
|
+
"tags": NotRequired[dict[str, str]],
|
|
1638
1633
|
"type": NotRequired[CETypeType],
|
|
1639
1634
|
"state": NotRequired[CEStateType],
|
|
1640
1635
|
"status": NotRequired[CEStatusType],
|
|
@@ -1676,7 +1671,7 @@ LaunchTemplateSpecificationUnionTypeDef = Union[
|
|
|
1676
1671
|
|
|
1677
1672
|
|
|
1678
1673
|
class EcsTaskDetailsTypeDef(TypedDict):
|
|
1679
|
-
containers: NotRequired[
|
|
1674
|
+
containers: NotRequired[list[TaskContainerDetailsTypeDef]]
|
|
1680
1675
|
containerInstanceArn: NotRequired[str]
|
|
1681
1676
|
taskArn: NotRequired[str]
|
|
1682
1677
|
ephemeralStorage: NotRequired[EphemeralStorageTypeDef]
|
|
@@ -1687,12 +1682,12 @@ class EcsTaskDetailsTypeDef(TypedDict):
|
|
|
1687
1682
|
pidMode: NotRequired[str]
|
|
1688
1683
|
networkConfiguration: NotRequired[NetworkConfigurationTypeDef]
|
|
1689
1684
|
runtimePlatform: NotRequired[RuntimePlatformTypeDef]
|
|
1690
|
-
volumes: NotRequired[
|
|
1685
|
+
volumes: NotRequired[list[VolumeTypeDef]]
|
|
1691
1686
|
enableExecuteCommand: NotRequired[bool]
|
|
1692
1687
|
|
|
1693
1688
|
|
|
1694
1689
|
class EcsTaskPropertiesOutputTypeDef(TypedDict):
|
|
1695
|
-
containers:
|
|
1690
|
+
containers: list[TaskContainerPropertiesOutputTypeDef]
|
|
1696
1691
|
ephemeralStorage: NotRequired[EphemeralStorageTypeDef]
|
|
1697
1692
|
executionRoleArn: NotRequired[str]
|
|
1698
1693
|
platformVersion: NotRequired[str]
|
|
@@ -1701,7 +1696,7 @@ class EcsTaskPropertiesOutputTypeDef(TypedDict):
|
|
|
1701
1696
|
pidMode: NotRequired[str]
|
|
1702
1697
|
networkConfiguration: NotRequired[NetworkConfigurationTypeDef]
|
|
1703
1698
|
runtimePlatform: NotRequired[RuntimePlatformTypeDef]
|
|
1704
|
-
volumes: NotRequired[
|
|
1699
|
+
volumes: NotRequired[list[VolumeTypeDef]]
|
|
1705
1700
|
enableExecuteCommand: NotRequired[bool]
|
|
1706
1701
|
|
|
1707
1702
|
|
|
@@ -1745,7 +1740,7 @@ EksPropertiesUnionTypeDef = Union[EksPropertiesTypeDef, EksPropertiesOutputTypeD
|
|
|
1745
1740
|
|
|
1746
1741
|
|
|
1747
1742
|
class DescribeComputeEnvironmentsResponseTypeDef(TypedDict):
|
|
1748
|
-
computeEnvironments:
|
|
1743
|
+
computeEnvironments: list[ComputeEnvironmentDetailTypeDef]
|
|
1749
1744
|
ResponseMetadata: ResponseMetadataTypeDef
|
|
1750
1745
|
nextToken: NotRequired[str]
|
|
1751
1746
|
|
|
@@ -1776,11 +1771,11 @@ ComputeResourceUpdateTypeDef = TypedDict(
|
|
|
1776
1771
|
|
|
1777
1772
|
|
|
1778
1773
|
class EcsPropertiesDetailTypeDef(TypedDict):
|
|
1779
|
-
taskProperties: NotRequired[
|
|
1774
|
+
taskProperties: NotRequired[list[EcsTaskDetailsTypeDef]]
|
|
1780
1775
|
|
|
1781
1776
|
|
|
1782
1777
|
class EcsPropertiesOutputTypeDef(TypedDict):
|
|
1783
|
-
taskProperties:
|
|
1778
|
+
taskProperties: list[EcsTaskPropertiesOutputTypeDef]
|
|
1784
1779
|
|
|
1785
1780
|
|
|
1786
1781
|
class EcsPropertiesTypeDef(TypedDict):
|
|
@@ -1825,7 +1820,7 @@ class UpdateComputeEnvironmentRequestTypeDef(TypedDict):
|
|
|
1825
1820
|
class NodeRangePropertyOutputTypeDef(TypedDict):
|
|
1826
1821
|
targetNodes: str
|
|
1827
1822
|
container: NotRequired[ContainerPropertiesOutputTypeDef]
|
|
1828
|
-
instanceTypes: NotRequired[
|
|
1823
|
+
instanceTypes: NotRequired[list[str]]
|
|
1829
1824
|
ecsProperties: NotRequired[EcsPropertiesOutputTypeDef]
|
|
1830
1825
|
eksProperties: NotRequired[EksPropertiesOutputTypeDef]
|
|
1831
1826
|
consumableResourceProperties: NotRequired[ConsumableResourcePropertiesOutputTypeDef]
|
|
@@ -1851,7 +1846,7 @@ class NodeOverridesTypeDef(TypedDict):
|
|
|
1851
1846
|
class NodePropertiesOutputTypeDef(TypedDict):
|
|
1852
1847
|
numNodes: int
|
|
1853
1848
|
mainNode: int
|
|
1854
|
-
nodeRangeProperties:
|
|
1849
|
+
nodeRangeProperties: list[NodeRangePropertyOutputTypeDef]
|
|
1855
1850
|
|
|
1856
1851
|
|
|
1857
1852
|
class NodePropertiesTypeDef(TypedDict):
|
|
@@ -1889,14 +1884,14 @@ JobDefinitionTypeDef = TypedDict(
|
|
|
1889
1884
|
"type": str,
|
|
1890
1885
|
"status": NotRequired[str],
|
|
1891
1886
|
"schedulingPriority": NotRequired[int],
|
|
1892
|
-
"parameters": NotRequired[
|
|
1887
|
+
"parameters": NotRequired[dict[str, str]],
|
|
1893
1888
|
"retryStrategy": NotRequired[RetryStrategyOutputTypeDef],
|
|
1894
1889
|
"containerProperties": NotRequired[ContainerPropertiesOutputTypeDef],
|
|
1895
1890
|
"timeout": NotRequired[JobTimeoutTypeDef],
|
|
1896
1891
|
"nodeProperties": NotRequired[NodePropertiesOutputTypeDef],
|
|
1897
|
-
"tags": NotRequired[
|
|
1892
|
+
"tags": NotRequired[dict[str, str]],
|
|
1898
1893
|
"propagateTags": NotRequired[bool],
|
|
1899
|
-
"platformCapabilities": NotRequired[
|
|
1894
|
+
"platformCapabilities": NotRequired[list[PlatformCapabilityType]],
|
|
1900
1895
|
"ecsProperties": NotRequired[EcsPropertiesOutputTypeDef],
|
|
1901
1896
|
"eksProperties": NotRequired[EksPropertiesOutputTypeDef],
|
|
1902
1897
|
"containerOrchestrationType": NotRequired[OrchestrationTypeType],
|
|
@@ -1915,23 +1910,23 @@ class JobDetailTypeDef(TypedDict):
|
|
|
1915
1910
|
jobArn: NotRequired[str]
|
|
1916
1911
|
shareIdentifier: NotRequired[str]
|
|
1917
1912
|
schedulingPriority: NotRequired[int]
|
|
1918
|
-
attempts: NotRequired[
|
|
1913
|
+
attempts: NotRequired[list[AttemptDetailTypeDef]]
|
|
1919
1914
|
statusReason: NotRequired[str]
|
|
1920
1915
|
createdAt: NotRequired[int]
|
|
1921
1916
|
retryStrategy: NotRequired[RetryStrategyOutputTypeDef]
|
|
1922
1917
|
stoppedAt: NotRequired[int]
|
|
1923
|
-
dependsOn: NotRequired[
|
|
1924
|
-
parameters: NotRequired[
|
|
1918
|
+
dependsOn: NotRequired[list[JobDependencyTypeDef]]
|
|
1919
|
+
parameters: NotRequired[dict[str, str]]
|
|
1925
1920
|
container: NotRequired[ContainerDetailTypeDef]
|
|
1926
1921
|
nodeDetails: NotRequired[NodeDetailsTypeDef]
|
|
1927
1922
|
nodeProperties: NotRequired[NodePropertiesOutputTypeDef]
|
|
1928
1923
|
arrayProperties: NotRequired[ArrayPropertiesDetailTypeDef]
|
|
1929
1924
|
timeout: NotRequired[JobTimeoutTypeDef]
|
|
1930
|
-
tags: NotRequired[
|
|
1925
|
+
tags: NotRequired[dict[str, str]]
|
|
1931
1926
|
propagateTags: NotRequired[bool]
|
|
1932
|
-
platformCapabilities: NotRequired[
|
|
1927
|
+
platformCapabilities: NotRequired[list[PlatformCapabilityType]]
|
|
1933
1928
|
eksProperties: NotRequired[EksPropertiesDetailTypeDef]
|
|
1934
|
-
eksAttempts: NotRequired[
|
|
1929
|
+
eksAttempts: NotRequired[list[EksAttemptDetailTypeDef]]
|
|
1935
1930
|
ecsProperties: NotRequired[EcsPropertiesDetailTypeDef]
|
|
1936
1931
|
isCancelled: NotRequired[bool]
|
|
1937
1932
|
isTerminated: NotRequired[bool]
|
|
@@ -1942,13 +1937,13 @@ NodePropertiesUnionTypeDef = Union[NodePropertiesTypeDef, NodePropertiesOutputTy
|
|
|
1942
1937
|
|
|
1943
1938
|
|
|
1944
1939
|
class DescribeJobDefinitionsResponseTypeDef(TypedDict):
|
|
1945
|
-
jobDefinitions:
|
|
1940
|
+
jobDefinitions: list[JobDefinitionTypeDef]
|
|
1946
1941
|
ResponseMetadata: ResponseMetadataTypeDef
|
|
1947
1942
|
nextToken: NotRequired[str]
|
|
1948
1943
|
|
|
1949
1944
|
|
|
1950
1945
|
class DescribeJobsResponseTypeDef(TypedDict):
|
|
1951
|
-
jobs:
|
|
1946
|
+
jobs: list[JobDetailTypeDef]
|
|
1952
1947
|
ResponseMetadata: ResponseMetadataTypeDef
|
|
1953
1948
|
|
|
1954
1949
|
|