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.pyi
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:
|
|
@@ -286,7 +281,7 @@ __all__ = (
|
|
|
286
281
|
)
|
|
287
282
|
|
|
288
283
|
class ArrayPropertiesDetailTypeDef(TypedDict):
|
|
289
|
-
statusSummary: NotRequired[
|
|
284
|
+
statusSummary: NotRequired[dict[str, int]]
|
|
290
285
|
size: NotRequired[int]
|
|
291
286
|
index: NotRequired[int]
|
|
292
287
|
|
|
@@ -387,7 +382,7 @@ class ContainerSummaryTypeDef(TypedDict):
|
|
|
387
382
|
class ResponseMetadataTypeDef(TypedDict):
|
|
388
383
|
RequestId: str
|
|
389
384
|
HTTPStatusCode: int
|
|
390
|
-
HTTPHeaders:
|
|
385
|
+
HTTPHeaders: dict[str, str]
|
|
391
386
|
RetryAttempts: int
|
|
392
387
|
HostId: NotRequired[str]
|
|
393
388
|
|
|
@@ -470,7 +465,7 @@ class ServiceJobTimeoutTypeDef(TypedDict):
|
|
|
470
465
|
class DeviceOutputTypeDef(TypedDict):
|
|
471
466
|
hostPath: str
|
|
472
467
|
containerPath: NotRequired[str]
|
|
473
|
-
permissions: NotRequired[
|
|
468
|
+
permissions: NotRequired[list[DeviceCgroupPermissionType]]
|
|
474
469
|
|
|
475
470
|
class DeviceTypeDef(TypedDict):
|
|
476
471
|
hostPath: str
|
|
@@ -492,8 +487,8 @@ class EksContainerEnvironmentVariableTypeDef(TypedDict):
|
|
|
492
487
|
value: NotRequired[str]
|
|
493
488
|
|
|
494
489
|
class EksContainerResourceRequirementsOutputTypeDef(TypedDict):
|
|
495
|
-
limits: NotRequired[
|
|
496
|
-
requests: NotRequired[
|
|
490
|
+
limits: NotRequired[dict[str, str]]
|
|
491
|
+
requests: NotRequired[dict[str, str]]
|
|
497
492
|
|
|
498
493
|
class EksContainerSecurityContextTypeDef(TypedDict):
|
|
499
494
|
runAsUser: NotRequired[int]
|
|
@@ -521,8 +516,8 @@ class EksHostPathTypeDef(TypedDict):
|
|
|
521
516
|
path: NotRequired[str]
|
|
522
517
|
|
|
523
518
|
class EksMetadataOutputTypeDef(TypedDict):
|
|
524
|
-
labels: NotRequired[
|
|
525
|
-
annotations: NotRequired[
|
|
519
|
+
labels: NotRequired[dict[str, str]]
|
|
520
|
+
annotations: NotRequired[dict[str, str]]
|
|
526
521
|
namespace: NotRequired[str]
|
|
527
522
|
|
|
528
523
|
class EksMetadataTypeDef(TypedDict):
|
|
@@ -555,7 +550,7 @@ FirelensConfigurationOutputTypeDef = TypedDict(
|
|
|
555
550
|
"FirelensConfigurationOutputTypeDef",
|
|
556
551
|
{
|
|
557
552
|
"type": FirelensConfigurationTypeType,
|
|
558
|
-
"options": NotRequired[
|
|
553
|
+
"options": NotRequired[dict[str, str]],
|
|
559
554
|
},
|
|
560
555
|
)
|
|
561
556
|
FirelensConfigurationTypeDef = TypedDict(
|
|
@@ -608,7 +603,7 @@ class LaunchTemplateSpecificationOverrideOutputTypeDef(TypedDict):
|
|
|
608
603
|
launchTemplateId: NotRequired[str]
|
|
609
604
|
launchTemplateName: NotRequired[str]
|
|
610
605
|
version: NotRequired[str]
|
|
611
|
-
targetInstanceTypes: NotRequired[
|
|
606
|
+
targetInstanceTypes: NotRequired[list[str]]
|
|
612
607
|
userdataType: NotRequired[UserdataTypeType]
|
|
613
608
|
|
|
614
609
|
class LaunchTemplateSpecificationOverrideTypeDef(TypedDict):
|
|
@@ -621,7 +616,7 @@ class LaunchTemplateSpecificationOverrideTypeDef(TypedDict):
|
|
|
621
616
|
class TmpfsOutputTypeDef(TypedDict):
|
|
622
617
|
containerPath: str
|
|
623
618
|
size: int
|
|
624
|
-
mountOptions: NotRequired[
|
|
619
|
+
mountOptions: NotRequired[list[str]]
|
|
625
620
|
|
|
626
621
|
class TmpfsTypeDef(TypedDict):
|
|
627
622
|
containerPath: str
|
|
@@ -674,14 +669,14 @@ class AttemptContainerDetailTypeDef(TypedDict):
|
|
|
674
669
|
exitCode: NotRequired[int]
|
|
675
670
|
reason: NotRequired[str]
|
|
676
671
|
logStreamName: NotRequired[str]
|
|
677
|
-
networkInterfaces: NotRequired[
|
|
672
|
+
networkInterfaces: NotRequired[list[NetworkInterfaceTypeDef]]
|
|
678
673
|
|
|
679
674
|
class AttemptTaskContainerDetailsTypeDef(TypedDict):
|
|
680
675
|
exitCode: NotRequired[int]
|
|
681
676
|
name: NotRequired[str]
|
|
682
677
|
reason: NotRequired[str]
|
|
683
678
|
logStreamName: NotRequired[str]
|
|
684
|
-
networkInterfaces: NotRequired[
|
|
679
|
+
networkInterfaces: NotRequired[list[NetworkInterfaceTypeDef]]
|
|
685
680
|
|
|
686
681
|
class CreateServiceEnvironmentRequestTypeDef(TypedDict):
|
|
687
682
|
serviceEnvironmentName: str
|
|
@@ -694,10 +689,10 @@ class ServiceEnvironmentDetailTypeDef(TypedDict):
|
|
|
694
689
|
serviceEnvironmentName: str
|
|
695
690
|
serviceEnvironmentArn: str
|
|
696
691
|
serviceEnvironmentType: Literal["SAGEMAKER_TRAINING"]
|
|
697
|
-
capacityLimits:
|
|
692
|
+
capacityLimits: list[CapacityLimitTypeDef]
|
|
698
693
|
state: NotRequired[ServiceEnvironmentStateType]
|
|
699
694
|
status: NotRequired[ServiceEnvironmentStatusType]
|
|
700
|
-
tags: NotRequired[
|
|
695
|
+
tags: NotRequired[dict[str, str]]
|
|
701
696
|
|
|
702
697
|
class UpdateServiceEnvironmentRequestTypeDef(TypedDict):
|
|
703
698
|
serviceEnvironment: str
|
|
@@ -705,7 +700,7 @@ class UpdateServiceEnvironmentRequestTypeDef(TypedDict):
|
|
|
705
700
|
capacityLimits: NotRequired[Sequence[CapacityLimitTypeDef]]
|
|
706
701
|
|
|
707
702
|
class ConsumableResourcePropertiesOutputTypeDef(TypedDict):
|
|
708
|
-
consumableResourceList: NotRequired[
|
|
703
|
+
consumableResourceList: NotRequired[list[ConsumableResourceRequirementTypeDef]]
|
|
709
704
|
|
|
710
705
|
class ConsumableResourcePropertiesTypeDef(TypedDict):
|
|
711
706
|
consumableResourceList: NotRequired[Sequence[ConsumableResourceRequirementTypeDef]]
|
|
@@ -726,8 +721,8 @@ class TaskContainerOverridesTypeDef(TypedDict):
|
|
|
726
721
|
|
|
727
722
|
class LogConfigurationOutputTypeDef(TypedDict):
|
|
728
723
|
logDriver: LogDriverType
|
|
729
|
-
options: NotRequired[
|
|
730
|
-
secretOptions: NotRequired[
|
|
724
|
+
options: NotRequired[dict[str, str]]
|
|
725
|
+
secretOptions: NotRequired[list[SecretTypeDef]]
|
|
731
726
|
|
|
732
727
|
class LogConfigurationTypeDef(TypedDict):
|
|
733
728
|
logDriver: LogDriverType
|
|
@@ -767,16 +762,16 @@ class DescribeConsumableResourceResponseTypeDef(TypedDict):
|
|
|
767
762
|
availableQuantity: int
|
|
768
763
|
resourceType: str
|
|
769
764
|
createdAt: int
|
|
770
|
-
tags:
|
|
765
|
+
tags: dict[str, str]
|
|
771
766
|
ResponseMetadata: ResponseMetadataTypeDef
|
|
772
767
|
|
|
773
768
|
class ListConsumableResourcesResponseTypeDef(TypedDict):
|
|
774
|
-
consumableResources:
|
|
769
|
+
consumableResources: list[ConsumableResourceSummaryTypeDef]
|
|
775
770
|
ResponseMetadata: ResponseMetadataTypeDef
|
|
776
771
|
nextToken: NotRequired[str]
|
|
777
772
|
|
|
778
773
|
class ListTagsForResourceResponseTypeDef(TypedDict):
|
|
779
|
-
tags:
|
|
774
|
+
tags: dict[str, str]
|
|
780
775
|
ResponseMetadata: ResponseMetadataTypeDef
|
|
781
776
|
|
|
782
777
|
class RegisterJobDefinitionResponseTypeDef(TypedDict):
|
|
@@ -834,14 +829,14 @@ class JobQueueDetailTypeDef(TypedDict):
|
|
|
834
829
|
jobQueueArn: str
|
|
835
830
|
state: JQStateType
|
|
836
831
|
priority: int
|
|
837
|
-
computeEnvironmentOrder:
|
|
832
|
+
computeEnvironmentOrder: list[ComputeEnvironmentOrderTypeDef]
|
|
838
833
|
schedulingPolicyArn: NotRequired[str]
|
|
839
834
|
status: NotRequired[JQStatusType]
|
|
840
835
|
statusReason: NotRequired[str]
|
|
841
|
-
serviceEnvironmentOrder: NotRequired[
|
|
836
|
+
serviceEnvironmentOrder: NotRequired[list[ServiceEnvironmentOrderTypeDef]]
|
|
842
837
|
jobQueueType: NotRequired[JobQueueTypeType]
|
|
843
|
-
tags: NotRequired[
|
|
844
|
-
jobStateTimeLimitActions: NotRequired[
|
|
838
|
+
tags: NotRequired[dict[str, str]]
|
|
839
|
+
jobStateTimeLimitActions: NotRequired[list[JobStateTimeLimitActionTypeDef]]
|
|
845
840
|
|
|
846
841
|
class UpdateJobQueueRequestTypeDef(TypedDict):
|
|
847
842
|
jobQueue: str
|
|
@@ -881,8 +876,8 @@ class EFSVolumeConfigurationTypeDef(TypedDict):
|
|
|
881
876
|
authorizationConfig: NotRequired[EFSAuthorizationConfigTypeDef]
|
|
882
877
|
|
|
883
878
|
class EksAttemptDetailTypeDef(TypedDict):
|
|
884
|
-
containers: NotRequired[
|
|
885
|
-
initContainers: NotRequired[
|
|
879
|
+
containers: NotRequired[list[EksAttemptContainerDetailTypeDef]]
|
|
880
|
+
initContainers: NotRequired[list[EksAttemptContainerDetailTypeDef]]
|
|
886
881
|
eksClusterArn: NotRequired[str]
|
|
887
882
|
podName: NotRequired[str]
|
|
888
883
|
podNamespace: NotRequired[str]
|
|
@@ -895,24 +890,24 @@ class EksContainerDetailTypeDef(TypedDict):
|
|
|
895
890
|
name: NotRequired[str]
|
|
896
891
|
image: NotRequired[str]
|
|
897
892
|
imagePullPolicy: NotRequired[str]
|
|
898
|
-
command: NotRequired[
|
|
899
|
-
args: NotRequired[
|
|
900
|
-
env: NotRequired[
|
|
893
|
+
command: NotRequired[list[str]]
|
|
894
|
+
args: NotRequired[list[str]]
|
|
895
|
+
env: NotRequired[list[EksContainerEnvironmentVariableTypeDef]]
|
|
901
896
|
resources: NotRequired[EksContainerResourceRequirementsOutputTypeDef]
|
|
902
897
|
exitCode: NotRequired[int]
|
|
903
898
|
reason: NotRequired[str]
|
|
904
|
-
volumeMounts: NotRequired[
|
|
899
|
+
volumeMounts: NotRequired[list[EksContainerVolumeMountTypeDef]]
|
|
905
900
|
securityContext: NotRequired[EksContainerSecurityContextTypeDef]
|
|
906
901
|
|
|
907
902
|
class EksContainerOutputTypeDef(TypedDict):
|
|
908
903
|
image: str
|
|
909
904
|
name: NotRequired[str]
|
|
910
905
|
imagePullPolicy: NotRequired[str]
|
|
911
|
-
command: NotRequired[
|
|
912
|
-
args: NotRequired[
|
|
913
|
-
env: NotRequired[
|
|
906
|
+
command: NotRequired[list[str]]
|
|
907
|
+
args: NotRequired[list[str]]
|
|
908
|
+
env: NotRequired[list[EksContainerEnvironmentVariableTypeDef]]
|
|
914
909
|
resources: NotRequired[EksContainerResourceRequirementsOutputTypeDef]
|
|
915
|
-
volumeMounts: NotRequired[
|
|
910
|
+
volumeMounts: NotRequired[list[EksContainerVolumeMountTypeDef]]
|
|
916
911
|
securityContext: NotRequired[EksContainerSecurityContextTypeDef]
|
|
917
912
|
|
|
918
913
|
EksContainerResourceRequirementsUnionTypeDef = Union[
|
|
@@ -941,7 +936,7 @@ class EksVolumeTypeDef(TypedDict):
|
|
|
941
936
|
|
|
942
937
|
class RetryStrategyOutputTypeDef(TypedDict):
|
|
943
938
|
attempts: NotRequired[int]
|
|
944
|
-
evaluateOnExit: NotRequired[
|
|
939
|
+
evaluateOnExit: NotRequired[list[EvaluateOnExitTypeDef]]
|
|
945
940
|
|
|
946
941
|
class RetryStrategyTypeDef(TypedDict):
|
|
947
942
|
attempts: NotRequired[int]
|
|
@@ -950,7 +945,7 @@ class RetryStrategyTypeDef(TypedDict):
|
|
|
950
945
|
class FairsharePolicyOutputTypeDef(TypedDict):
|
|
951
946
|
shareDecaySeconds: NotRequired[int]
|
|
952
947
|
computeReservation: NotRequired[int]
|
|
953
|
-
shareDistribution: NotRequired[
|
|
948
|
+
shareDistribution: NotRequired[list[ShareAttributesTypeDef]]
|
|
954
949
|
|
|
955
950
|
class FairsharePolicyTypeDef(TypedDict):
|
|
956
951
|
shareDecaySeconds: NotRequired[int]
|
|
@@ -958,7 +953,7 @@ class FairsharePolicyTypeDef(TypedDict):
|
|
|
958
953
|
shareDistribution: NotRequired[Sequence[ShareAttributesTypeDef]]
|
|
959
954
|
|
|
960
955
|
class FrontOfQueueDetailTypeDef(TypedDict):
|
|
961
|
-
jobs: NotRequired[
|
|
956
|
+
jobs: NotRequired[list[FrontOfQueueJobSummaryTypeDef]]
|
|
962
957
|
lastUpdatedAt: NotRequired[int]
|
|
963
958
|
|
|
964
959
|
class JobSummaryTypeDef(TypedDict):
|
|
@@ -1038,7 +1033,7 @@ class LaunchTemplateSpecificationOutputTypeDef(TypedDict):
|
|
|
1038
1033
|
launchTemplateId: NotRequired[str]
|
|
1039
1034
|
launchTemplateName: NotRequired[str]
|
|
1040
1035
|
version: NotRequired[str]
|
|
1041
|
-
overrides: NotRequired[
|
|
1036
|
+
overrides: NotRequired[list[LaunchTemplateSpecificationOverrideOutputTypeDef]]
|
|
1042
1037
|
userdataType: NotRequired[UserdataTypeType]
|
|
1043
1038
|
|
|
1044
1039
|
LaunchTemplateSpecificationOverrideUnionTypeDef = Union[
|
|
@@ -1046,10 +1041,10 @@ LaunchTemplateSpecificationOverrideUnionTypeDef = Union[
|
|
|
1046
1041
|
]
|
|
1047
1042
|
|
|
1048
1043
|
class LinuxParametersOutputTypeDef(TypedDict):
|
|
1049
|
-
devices: NotRequired[
|
|
1044
|
+
devices: NotRequired[list[DeviceOutputTypeDef]]
|
|
1050
1045
|
initProcessEnabled: NotRequired[bool]
|
|
1051
1046
|
sharedMemorySize: NotRequired[int]
|
|
1052
|
-
tmpfs: NotRequired[
|
|
1047
|
+
tmpfs: NotRequired[list[TmpfsOutputTypeDef]]
|
|
1053
1048
|
maxSwap: NotRequired[int]
|
|
1054
1049
|
swappiness: NotRequired[int]
|
|
1055
1050
|
|
|
@@ -1062,13 +1057,13 @@ class LinuxParametersTypeDef(TypedDict):
|
|
|
1062
1057
|
swappiness: NotRequired[int]
|
|
1063
1058
|
|
|
1064
1059
|
class ListSchedulingPoliciesResponseTypeDef(TypedDict):
|
|
1065
|
-
schedulingPolicies:
|
|
1060
|
+
schedulingPolicies: list[SchedulingPolicyListingDetailTypeDef]
|
|
1066
1061
|
ResponseMetadata: ResponseMetadataTypeDef
|
|
1067
1062
|
nextToken: NotRequired[str]
|
|
1068
1063
|
|
|
1069
1064
|
class ServiceJobRetryStrategyOutputTypeDef(TypedDict):
|
|
1070
1065
|
attempts: int
|
|
1071
|
-
evaluateOnExit: NotRequired[
|
|
1066
|
+
evaluateOnExit: NotRequired[list[ServiceJobEvaluateOnExitTypeDef]]
|
|
1072
1067
|
|
|
1073
1068
|
class ServiceJobRetryStrategyTypeDef(TypedDict):
|
|
1074
1069
|
attempts: int
|
|
@@ -1077,10 +1072,10 @@ class ServiceJobRetryStrategyTypeDef(TypedDict):
|
|
|
1077
1072
|
class AttemptEcsTaskDetailsTypeDef(TypedDict):
|
|
1078
1073
|
containerInstanceArn: NotRequired[str]
|
|
1079
1074
|
taskArn: NotRequired[str]
|
|
1080
|
-
containers: NotRequired[
|
|
1075
|
+
containers: NotRequired[list[AttemptTaskContainerDetailsTypeDef]]
|
|
1081
1076
|
|
|
1082
1077
|
class DescribeServiceEnvironmentsResponseTypeDef(TypedDict):
|
|
1083
|
-
serviceEnvironments:
|
|
1078
|
+
serviceEnvironments: list[ServiceEnvironmentDetailTypeDef]
|
|
1084
1079
|
ResponseMetadata: ResponseMetadataTypeDef
|
|
1085
1080
|
nextToken: NotRequired[str]
|
|
1086
1081
|
|
|
@@ -1105,7 +1100,7 @@ class TaskPropertiesOverrideTypeDef(TypedDict):
|
|
|
1105
1100
|
containers: NotRequired[Sequence[TaskContainerOverridesTypeDef]]
|
|
1106
1101
|
|
|
1107
1102
|
class DescribeJobQueuesResponseTypeDef(TypedDict):
|
|
1108
|
-
jobQueues:
|
|
1103
|
+
jobQueues: list[JobQueueDetailTypeDef]
|
|
1109
1104
|
ResponseMetadata: ResponseMetadataTypeDef
|
|
1110
1105
|
nextToken: NotRequired[str]
|
|
1111
1106
|
|
|
@@ -1126,10 +1121,10 @@ class EksPodPropertiesDetailTypeDef(TypedDict):
|
|
|
1126
1121
|
serviceAccountName: NotRequired[str]
|
|
1127
1122
|
hostNetwork: NotRequired[bool]
|
|
1128
1123
|
dnsPolicy: NotRequired[str]
|
|
1129
|
-
imagePullSecrets: NotRequired[
|
|
1130
|
-
containers: NotRequired[
|
|
1131
|
-
initContainers: NotRequired[
|
|
1132
|
-
volumes: NotRequired[
|
|
1124
|
+
imagePullSecrets: NotRequired[list[ImagePullSecretTypeDef]]
|
|
1125
|
+
containers: NotRequired[list[EksContainerDetailTypeDef]]
|
|
1126
|
+
initContainers: NotRequired[list[EksContainerDetailTypeDef]]
|
|
1127
|
+
volumes: NotRequired[list[EksVolumeTypeDef]]
|
|
1133
1128
|
podName: NotRequired[str]
|
|
1134
1129
|
nodeName: NotRequired[str]
|
|
1135
1130
|
metadata: NotRequired[EksMetadataOutputTypeDef]
|
|
@@ -1139,10 +1134,10 @@ class EksPodPropertiesOutputTypeDef(TypedDict):
|
|
|
1139
1134
|
serviceAccountName: NotRequired[str]
|
|
1140
1135
|
hostNetwork: NotRequired[bool]
|
|
1141
1136
|
dnsPolicy: NotRequired[str]
|
|
1142
|
-
imagePullSecrets: NotRequired[
|
|
1143
|
-
containers: NotRequired[
|
|
1144
|
-
initContainers: NotRequired[
|
|
1145
|
-
volumes: NotRequired[
|
|
1137
|
+
imagePullSecrets: NotRequired[list[ImagePullSecretTypeDef]]
|
|
1138
|
+
containers: NotRequired[list[EksContainerOutputTypeDef]]
|
|
1139
|
+
initContainers: NotRequired[list[EksContainerOutputTypeDef]]
|
|
1140
|
+
volumes: NotRequired[list[EksVolumeTypeDef]]
|
|
1146
1141
|
metadata: NotRequired[EksMetadataOutputTypeDef]
|
|
1147
1142
|
shareProcessNamespace: NotRequired[bool]
|
|
1148
1143
|
|
|
@@ -1163,7 +1158,7 @@ class SchedulingPolicyDetailTypeDef(TypedDict):
|
|
|
1163
1158
|
name: str
|
|
1164
1159
|
arn: str
|
|
1165
1160
|
fairsharePolicy: NotRequired[FairsharePolicyOutputTypeDef]
|
|
1166
|
-
tags: NotRequired[
|
|
1161
|
+
tags: NotRequired[dict[str, str]]
|
|
1167
1162
|
|
|
1168
1163
|
FairsharePolicyUnionTypeDef = Union[FairsharePolicyTypeDef, FairsharePolicyOutputTypeDef]
|
|
1169
1164
|
|
|
@@ -1172,7 +1167,7 @@ class GetJobQueueSnapshotResponseTypeDef(TypedDict):
|
|
|
1172
1167
|
ResponseMetadata: ResponseMetadataTypeDef
|
|
1173
1168
|
|
|
1174
1169
|
class ListJobsResponseTypeDef(TypedDict):
|
|
1175
|
-
jobSummaryList:
|
|
1170
|
+
jobSummaryList: list[JobSummaryTypeDef]
|
|
1176
1171
|
ResponseMetadata: ResponseMetadataTypeDef
|
|
1177
1172
|
nextToken: NotRequired[str]
|
|
1178
1173
|
|
|
@@ -1194,21 +1189,21 @@ ComputeResourceOutputTypeDef = TypedDict(
|
|
|
1194
1189
|
{
|
|
1195
1190
|
"type": CRTypeType,
|
|
1196
1191
|
"maxvCpus": int,
|
|
1197
|
-
"subnets":
|
|
1192
|
+
"subnets": list[str],
|
|
1198
1193
|
"allocationStrategy": NotRequired[CRAllocationStrategyType],
|
|
1199
1194
|
"minvCpus": NotRequired[int],
|
|
1200
1195
|
"desiredvCpus": NotRequired[int],
|
|
1201
|
-
"instanceTypes": NotRequired[
|
|
1196
|
+
"instanceTypes": NotRequired[list[str]],
|
|
1202
1197
|
"imageId": NotRequired[str],
|
|
1203
|
-
"securityGroupIds": NotRequired[
|
|
1198
|
+
"securityGroupIds": NotRequired[list[str]],
|
|
1204
1199
|
"ec2KeyPair": NotRequired[str],
|
|
1205
1200
|
"instanceRole": NotRequired[str],
|
|
1206
|
-
"tags": NotRequired[
|
|
1201
|
+
"tags": NotRequired[dict[str, str]],
|
|
1207
1202
|
"placementGroup": NotRequired[str],
|
|
1208
1203
|
"bidPercentage": NotRequired[int],
|
|
1209
1204
|
"spotIamFleetRole": NotRequired[str],
|
|
1210
1205
|
"launchTemplate": NotRequired[LaunchTemplateSpecificationOutputTypeDef],
|
|
1211
|
-
"ec2Configuration": NotRequired[
|
|
1206
|
+
"ec2Configuration": NotRequired[list[Ec2ConfigurationTypeDef]],
|
|
1212
1207
|
},
|
|
1213
1208
|
)
|
|
1214
1209
|
|
|
@@ -1220,45 +1215,45 @@ class LaunchTemplateSpecificationTypeDef(TypedDict):
|
|
|
1220
1215
|
userdataType: NotRequired[UserdataTypeType]
|
|
1221
1216
|
|
|
1222
1217
|
class TaskContainerDetailsTypeDef(TypedDict):
|
|
1223
|
-
command: NotRequired[
|
|
1224
|
-
dependsOn: NotRequired[
|
|
1225
|
-
environment: NotRequired[
|
|
1218
|
+
command: NotRequired[list[str]]
|
|
1219
|
+
dependsOn: NotRequired[list[TaskContainerDependencyTypeDef]]
|
|
1220
|
+
environment: NotRequired[list[KeyValuePairTypeDef]]
|
|
1226
1221
|
essential: NotRequired[bool]
|
|
1227
1222
|
firelensConfiguration: NotRequired[FirelensConfigurationOutputTypeDef]
|
|
1228
1223
|
image: NotRequired[str]
|
|
1229
1224
|
linuxParameters: NotRequired[LinuxParametersOutputTypeDef]
|
|
1230
1225
|
logConfiguration: NotRequired[LogConfigurationOutputTypeDef]
|
|
1231
|
-
mountPoints: NotRequired[
|
|
1226
|
+
mountPoints: NotRequired[list[MountPointTypeDef]]
|
|
1232
1227
|
name: NotRequired[str]
|
|
1233
1228
|
privileged: NotRequired[bool]
|
|
1234
1229
|
readonlyRootFilesystem: NotRequired[bool]
|
|
1235
1230
|
repositoryCredentials: NotRequired[RepositoryCredentialsTypeDef]
|
|
1236
|
-
resourceRequirements: NotRequired[
|
|
1237
|
-
secrets: NotRequired[
|
|
1238
|
-
ulimits: NotRequired[
|
|
1231
|
+
resourceRequirements: NotRequired[list[ResourceRequirementTypeDef]]
|
|
1232
|
+
secrets: NotRequired[list[SecretTypeDef]]
|
|
1233
|
+
ulimits: NotRequired[list[UlimitTypeDef]]
|
|
1239
1234
|
user: NotRequired[str]
|
|
1240
1235
|
exitCode: NotRequired[int]
|
|
1241
1236
|
reason: NotRequired[str]
|
|
1242
1237
|
logStreamName: NotRequired[str]
|
|
1243
|
-
networkInterfaces: NotRequired[
|
|
1238
|
+
networkInterfaces: NotRequired[list[NetworkInterfaceTypeDef]]
|
|
1244
1239
|
|
|
1245
1240
|
class TaskContainerPropertiesOutputTypeDef(TypedDict):
|
|
1246
1241
|
image: str
|
|
1247
|
-
command: NotRequired[
|
|
1248
|
-
dependsOn: NotRequired[
|
|
1249
|
-
environment: NotRequired[
|
|
1242
|
+
command: NotRequired[list[str]]
|
|
1243
|
+
dependsOn: NotRequired[list[TaskContainerDependencyTypeDef]]
|
|
1244
|
+
environment: NotRequired[list[KeyValuePairTypeDef]]
|
|
1250
1245
|
essential: NotRequired[bool]
|
|
1251
1246
|
firelensConfiguration: NotRequired[FirelensConfigurationOutputTypeDef]
|
|
1252
1247
|
linuxParameters: NotRequired[LinuxParametersOutputTypeDef]
|
|
1253
1248
|
logConfiguration: NotRequired[LogConfigurationOutputTypeDef]
|
|
1254
|
-
mountPoints: NotRequired[
|
|
1249
|
+
mountPoints: NotRequired[list[MountPointTypeDef]]
|
|
1255
1250
|
name: NotRequired[str]
|
|
1256
1251
|
privileged: NotRequired[bool]
|
|
1257
1252
|
readonlyRootFilesystem: NotRequired[bool]
|
|
1258
1253
|
repositoryCredentials: NotRequired[RepositoryCredentialsTypeDef]
|
|
1259
|
-
resourceRequirements: NotRequired[
|
|
1260
|
-
secrets: NotRequired[
|
|
1261
|
-
ulimits: NotRequired[
|
|
1254
|
+
resourceRequirements: NotRequired[list[ResourceRequirementTypeDef]]
|
|
1255
|
+
secrets: NotRequired[list[SecretTypeDef]]
|
|
1256
|
+
ulimits: NotRequired[list[UlimitTypeDef]]
|
|
1262
1257
|
user: NotRequired[str]
|
|
1263
1258
|
|
|
1264
1259
|
class TaskContainerPropertiesTypeDef(TypedDict):
|
|
@@ -1281,7 +1276,7 @@ class TaskContainerPropertiesTypeDef(TypedDict):
|
|
|
1281
1276
|
user: NotRequired[str]
|
|
1282
1277
|
|
|
1283
1278
|
class DescribeServiceJobResponseTypeDef(TypedDict):
|
|
1284
|
-
attempts:
|
|
1279
|
+
attempts: list[ServiceJobAttemptDetailTypeDef]
|
|
1285
1280
|
createdAt: int
|
|
1286
1281
|
isTerminated: bool
|
|
1287
1282
|
jobArn: str
|
|
@@ -1298,7 +1293,7 @@ class DescribeServiceJobResponseTypeDef(TypedDict):
|
|
|
1298
1293
|
status: ServiceJobStatusType
|
|
1299
1294
|
statusReason: str
|
|
1300
1295
|
stoppedAt: int
|
|
1301
|
-
tags:
|
|
1296
|
+
tags: dict[str, str]
|
|
1302
1297
|
timeoutConfig: ServiceJobTimeoutTypeDef
|
|
1303
1298
|
ResponseMetadata: ResponseMetadataTypeDef
|
|
1304
1299
|
|
|
@@ -1311,10 +1306,10 @@ class AttemptDetailTypeDef(TypedDict):
|
|
|
1311
1306
|
startedAt: NotRequired[int]
|
|
1312
1307
|
stoppedAt: NotRequired[int]
|
|
1313
1308
|
statusReason: NotRequired[str]
|
|
1314
|
-
taskProperties: NotRequired[
|
|
1309
|
+
taskProperties: NotRequired[list[AttemptEcsTaskDetailsTypeDef]]
|
|
1315
1310
|
|
|
1316
1311
|
class ListJobsByConsumableResourceResponseTypeDef(TypedDict):
|
|
1317
|
-
jobs:
|
|
1312
|
+
jobs: list[ListJobsByConsumableResourceSummaryTypeDef]
|
|
1318
1313
|
ResponseMetadata: ResponseMetadataTypeDef
|
|
1319
1314
|
nextToken: NotRequired[str]
|
|
1320
1315
|
|
|
@@ -1325,14 +1320,14 @@ class ContainerDetailTypeDef(TypedDict):
|
|
|
1325
1320
|
image: NotRequired[str]
|
|
1326
1321
|
vcpus: NotRequired[int]
|
|
1327
1322
|
memory: NotRequired[int]
|
|
1328
|
-
command: NotRequired[
|
|
1323
|
+
command: NotRequired[list[str]]
|
|
1329
1324
|
jobRoleArn: NotRequired[str]
|
|
1330
1325
|
executionRoleArn: NotRequired[str]
|
|
1331
|
-
volumes: NotRequired[
|
|
1332
|
-
environment: NotRequired[
|
|
1333
|
-
mountPoints: NotRequired[
|
|
1326
|
+
volumes: NotRequired[list[VolumeTypeDef]]
|
|
1327
|
+
environment: NotRequired[list[KeyValuePairTypeDef]]
|
|
1328
|
+
mountPoints: NotRequired[list[MountPointTypeDef]]
|
|
1334
1329
|
readonlyRootFilesystem: NotRequired[bool]
|
|
1335
|
-
ulimits: NotRequired[
|
|
1330
|
+
ulimits: NotRequired[list[UlimitTypeDef]]
|
|
1336
1331
|
privileged: NotRequired[bool]
|
|
1337
1332
|
user: NotRequired[str]
|
|
1338
1333
|
exitCode: NotRequired[int]
|
|
@@ -1341,11 +1336,11 @@ class ContainerDetailTypeDef(TypedDict):
|
|
|
1341
1336
|
taskArn: NotRequired[str]
|
|
1342
1337
|
logStreamName: NotRequired[str]
|
|
1343
1338
|
instanceType: NotRequired[str]
|
|
1344
|
-
networkInterfaces: NotRequired[
|
|
1345
|
-
resourceRequirements: NotRequired[
|
|
1339
|
+
networkInterfaces: NotRequired[list[NetworkInterfaceTypeDef]]
|
|
1340
|
+
resourceRequirements: NotRequired[list[ResourceRequirementTypeDef]]
|
|
1346
1341
|
linuxParameters: NotRequired[LinuxParametersOutputTypeDef]
|
|
1347
1342
|
logConfiguration: NotRequired[LogConfigurationOutputTypeDef]
|
|
1348
|
-
secrets: NotRequired[
|
|
1343
|
+
secrets: NotRequired[list[SecretTypeDef]]
|
|
1349
1344
|
networkConfiguration: NotRequired[NetworkConfigurationTypeDef]
|
|
1350
1345
|
fargatePlatformConfiguration: NotRequired[FargatePlatformConfigurationTypeDef]
|
|
1351
1346
|
ephemeralStorage: NotRequired[EphemeralStorageTypeDef]
|
|
@@ -1357,21 +1352,21 @@ class ContainerPropertiesOutputTypeDef(TypedDict):
|
|
|
1357
1352
|
image: NotRequired[str]
|
|
1358
1353
|
vcpus: NotRequired[int]
|
|
1359
1354
|
memory: NotRequired[int]
|
|
1360
|
-
command: NotRequired[
|
|
1355
|
+
command: NotRequired[list[str]]
|
|
1361
1356
|
jobRoleArn: NotRequired[str]
|
|
1362
1357
|
executionRoleArn: NotRequired[str]
|
|
1363
|
-
volumes: NotRequired[
|
|
1364
|
-
environment: NotRequired[
|
|
1365
|
-
mountPoints: NotRequired[
|
|
1358
|
+
volumes: NotRequired[list[VolumeTypeDef]]
|
|
1359
|
+
environment: NotRequired[list[KeyValuePairTypeDef]]
|
|
1360
|
+
mountPoints: NotRequired[list[MountPointTypeDef]]
|
|
1366
1361
|
readonlyRootFilesystem: NotRequired[bool]
|
|
1367
1362
|
privileged: NotRequired[bool]
|
|
1368
|
-
ulimits: NotRequired[
|
|
1363
|
+
ulimits: NotRequired[list[UlimitTypeDef]]
|
|
1369
1364
|
user: NotRequired[str]
|
|
1370
1365
|
instanceType: NotRequired[str]
|
|
1371
|
-
resourceRequirements: NotRequired[
|
|
1366
|
+
resourceRequirements: NotRequired[list[ResourceRequirementTypeDef]]
|
|
1372
1367
|
linuxParameters: NotRequired[LinuxParametersOutputTypeDef]
|
|
1373
1368
|
logConfiguration: NotRequired[LogConfigurationOutputTypeDef]
|
|
1374
|
-
secrets: NotRequired[
|
|
1369
|
+
secrets: NotRequired[list[SecretTypeDef]]
|
|
1375
1370
|
networkConfiguration: NotRequired[NetworkConfigurationTypeDef]
|
|
1376
1371
|
fargatePlatformConfiguration: NotRequired[FargatePlatformConfigurationTypeDef]
|
|
1377
1372
|
enableExecuteCommand: NotRequired[bool]
|
|
@@ -1420,7 +1415,7 @@ class EksPropertiesTypeDef(TypedDict):
|
|
|
1420
1415
|
podProperties: NotRequired[EksPodPropertiesTypeDef]
|
|
1421
1416
|
|
|
1422
1417
|
class DescribeSchedulingPoliciesResponseTypeDef(TypedDict):
|
|
1423
|
-
schedulingPolicies:
|
|
1418
|
+
schedulingPolicies: list[SchedulingPolicyDetailTypeDef]
|
|
1424
1419
|
ResponseMetadata: ResponseMetadataTypeDef
|
|
1425
1420
|
|
|
1426
1421
|
class CreateSchedulingPolicyRequestTypeDef(TypedDict):
|
|
@@ -1433,7 +1428,7 @@ class UpdateSchedulingPolicyRequestTypeDef(TypedDict):
|
|
|
1433
1428
|
fairsharePolicy: NotRequired[FairsharePolicyUnionTypeDef]
|
|
1434
1429
|
|
|
1435
1430
|
class ListServiceJobsResponseTypeDef(TypedDict):
|
|
1436
|
-
jobSummaryList:
|
|
1431
|
+
jobSummaryList: list[ServiceJobSummaryTypeDef]
|
|
1437
1432
|
ResponseMetadata: ResponseMetadataTypeDef
|
|
1438
1433
|
nextToken: NotRequired[str]
|
|
1439
1434
|
|
|
@@ -1444,7 +1439,7 @@ ComputeEnvironmentDetailTypeDef = TypedDict(
|
|
|
1444
1439
|
"computeEnvironmentArn": str,
|
|
1445
1440
|
"unmanagedvCpus": NotRequired[int],
|
|
1446
1441
|
"ecsClusterArn": NotRequired[str],
|
|
1447
|
-
"tags": NotRequired[
|
|
1442
|
+
"tags": NotRequired[dict[str, str]],
|
|
1448
1443
|
"type": NotRequired[CETypeType],
|
|
1449
1444
|
"state": NotRequired[CEStateType],
|
|
1450
1445
|
"status": NotRequired[CEStatusType],
|
|
@@ -1485,7 +1480,7 @@ LaunchTemplateSpecificationUnionTypeDef = Union[
|
|
|
1485
1480
|
]
|
|
1486
1481
|
|
|
1487
1482
|
class EcsTaskDetailsTypeDef(TypedDict):
|
|
1488
|
-
containers: NotRequired[
|
|
1483
|
+
containers: NotRequired[list[TaskContainerDetailsTypeDef]]
|
|
1489
1484
|
containerInstanceArn: NotRequired[str]
|
|
1490
1485
|
taskArn: NotRequired[str]
|
|
1491
1486
|
ephemeralStorage: NotRequired[EphemeralStorageTypeDef]
|
|
@@ -1496,11 +1491,11 @@ class EcsTaskDetailsTypeDef(TypedDict):
|
|
|
1496
1491
|
pidMode: NotRequired[str]
|
|
1497
1492
|
networkConfiguration: NotRequired[NetworkConfigurationTypeDef]
|
|
1498
1493
|
runtimePlatform: NotRequired[RuntimePlatformTypeDef]
|
|
1499
|
-
volumes: NotRequired[
|
|
1494
|
+
volumes: NotRequired[list[VolumeTypeDef]]
|
|
1500
1495
|
enableExecuteCommand: NotRequired[bool]
|
|
1501
1496
|
|
|
1502
1497
|
class EcsTaskPropertiesOutputTypeDef(TypedDict):
|
|
1503
|
-
containers:
|
|
1498
|
+
containers: list[TaskContainerPropertiesOutputTypeDef]
|
|
1504
1499
|
ephemeralStorage: NotRequired[EphemeralStorageTypeDef]
|
|
1505
1500
|
executionRoleArn: NotRequired[str]
|
|
1506
1501
|
platformVersion: NotRequired[str]
|
|
@@ -1509,7 +1504,7 @@ class EcsTaskPropertiesOutputTypeDef(TypedDict):
|
|
|
1509
1504
|
pidMode: NotRequired[str]
|
|
1510
1505
|
networkConfiguration: NotRequired[NetworkConfigurationTypeDef]
|
|
1511
1506
|
runtimePlatform: NotRequired[RuntimePlatformTypeDef]
|
|
1512
|
-
volumes: NotRequired[
|
|
1507
|
+
volumes: NotRequired[list[VolumeTypeDef]]
|
|
1513
1508
|
enableExecuteCommand: NotRequired[bool]
|
|
1514
1509
|
|
|
1515
1510
|
class EcsTaskPropertiesTypeDef(TypedDict):
|
|
@@ -1547,7 +1542,7 @@ class EksPropertiesOverrideTypeDef(TypedDict):
|
|
|
1547
1542
|
EksPropertiesUnionTypeDef = Union[EksPropertiesTypeDef, EksPropertiesOutputTypeDef]
|
|
1548
1543
|
|
|
1549
1544
|
class DescribeComputeEnvironmentsResponseTypeDef(TypedDict):
|
|
1550
|
-
computeEnvironments:
|
|
1545
|
+
computeEnvironments: list[ComputeEnvironmentDetailTypeDef]
|
|
1551
1546
|
ResponseMetadata: ResponseMetadataTypeDef
|
|
1552
1547
|
nextToken: NotRequired[str]
|
|
1553
1548
|
|
|
@@ -1576,10 +1571,10 @@ ComputeResourceUpdateTypeDef = TypedDict(
|
|
|
1576
1571
|
)
|
|
1577
1572
|
|
|
1578
1573
|
class EcsPropertiesDetailTypeDef(TypedDict):
|
|
1579
|
-
taskProperties: NotRequired[
|
|
1574
|
+
taskProperties: NotRequired[list[EcsTaskDetailsTypeDef]]
|
|
1580
1575
|
|
|
1581
1576
|
class EcsPropertiesOutputTypeDef(TypedDict):
|
|
1582
|
-
taskProperties:
|
|
1577
|
+
taskProperties: list[EcsTaskPropertiesOutputTypeDef]
|
|
1583
1578
|
|
|
1584
1579
|
class EcsPropertiesTypeDef(TypedDict):
|
|
1585
1580
|
taskProperties: Sequence[EcsTaskPropertiesTypeDef]
|
|
@@ -1619,7 +1614,7 @@ class UpdateComputeEnvironmentRequestTypeDef(TypedDict):
|
|
|
1619
1614
|
class NodeRangePropertyOutputTypeDef(TypedDict):
|
|
1620
1615
|
targetNodes: str
|
|
1621
1616
|
container: NotRequired[ContainerPropertiesOutputTypeDef]
|
|
1622
|
-
instanceTypes: NotRequired[
|
|
1617
|
+
instanceTypes: NotRequired[list[str]]
|
|
1623
1618
|
ecsProperties: NotRequired[EcsPropertiesOutputTypeDef]
|
|
1624
1619
|
eksProperties: NotRequired[EksPropertiesOutputTypeDef]
|
|
1625
1620
|
consumableResourceProperties: NotRequired[ConsumableResourcePropertiesOutputTypeDef]
|
|
@@ -1641,7 +1636,7 @@ class NodeOverridesTypeDef(TypedDict):
|
|
|
1641
1636
|
class NodePropertiesOutputTypeDef(TypedDict):
|
|
1642
1637
|
numNodes: int
|
|
1643
1638
|
mainNode: int
|
|
1644
|
-
nodeRangeProperties:
|
|
1639
|
+
nodeRangeProperties: list[NodeRangePropertyOutputTypeDef]
|
|
1645
1640
|
|
|
1646
1641
|
class NodePropertiesTypeDef(TypedDict):
|
|
1647
1642
|
numNodes: int
|
|
@@ -1676,14 +1671,14 @@ JobDefinitionTypeDef = TypedDict(
|
|
|
1676
1671
|
"type": str,
|
|
1677
1672
|
"status": NotRequired[str],
|
|
1678
1673
|
"schedulingPriority": NotRequired[int],
|
|
1679
|
-
"parameters": NotRequired[
|
|
1674
|
+
"parameters": NotRequired[dict[str, str]],
|
|
1680
1675
|
"retryStrategy": NotRequired[RetryStrategyOutputTypeDef],
|
|
1681
1676
|
"containerProperties": NotRequired[ContainerPropertiesOutputTypeDef],
|
|
1682
1677
|
"timeout": NotRequired[JobTimeoutTypeDef],
|
|
1683
1678
|
"nodeProperties": NotRequired[NodePropertiesOutputTypeDef],
|
|
1684
|
-
"tags": NotRequired[
|
|
1679
|
+
"tags": NotRequired[dict[str, str]],
|
|
1685
1680
|
"propagateTags": NotRequired[bool],
|
|
1686
|
-
"platformCapabilities": NotRequired[
|
|
1681
|
+
"platformCapabilities": NotRequired[list[PlatformCapabilityType]],
|
|
1687
1682
|
"ecsProperties": NotRequired[EcsPropertiesOutputTypeDef],
|
|
1688
1683
|
"eksProperties": NotRequired[EksPropertiesOutputTypeDef],
|
|
1689
1684
|
"containerOrchestrationType": NotRequired[OrchestrationTypeType],
|
|
@@ -1701,23 +1696,23 @@ class JobDetailTypeDef(TypedDict):
|
|
|
1701
1696
|
jobArn: NotRequired[str]
|
|
1702
1697
|
shareIdentifier: NotRequired[str]
|
|
1703
1698
|
schedulingPriority: NotRequired[int]
|
|
1704
|
-
attempts: NotRequired[
|
|
1699
|
+
attempts: NotRequired[list[AttemptDetailTypeDef]]
|
|
1705
1700
|
statusReason: NotRequired[str]
|
|
1706
1701
|
createdAt: NotRequired[int]
|
|
1707
1702
|
retryStrategy: NotRequired[RetryStrategyOutputTypeDef]
|
|
1708
1703
|
stoppedAt: NotRequired[int]
|
|
1709
|
-
dependsOn: NotRequired[
|
|
1710
|
-
parameters: NotRequired[
|
|
1704
|
+
dependsOn: NotRequired[list[JobDependencyTypeDef]]
|
|
1705
|
+
parameters: NotRequired[dict[str, str]]
|
|
1711
1706
|
container: NotRequired[ContainerDetailTypeDef]
|
|
1712
1707
|
nodeDetails: NotRequired[NodeDetailsTypeDef]
|
|
1713
1708
|
nodeProperties: NotRequired[NodePropertiesOutputTypeDef]
|
|
1714
1709
|
arrayProperties: NotRequired[ArrayPropertiesDetailTypeDef]
|
|
1715
1710
|
timeout: NotRequired[JobTimeoutTypeDef]
|
|
1716
|
-
tags: NotRequired[
|
|
1711
|
+
tags: NotRequired[dict[str, str]]
|
|
1717
1712
|
propagateTags: NotRequired[bool]
|
|
1718
|
-
platformCapabilities: NotRequired[
|
|
1713
|
+
platformCapabilities: NotRequired[list[PlatformCapabilityType]]
|
|
1719
1714
|
eksProperties: NotRequired[EksPropertiesDetailTypeDef]
|
|
1720
|
-
eksAttempts: NotRequired[
|
|
1715
|
+
eksAttempts: NotRequired[list[EksAttemptDetailTypeDef]]
|
|
1721
1716
|
ecsProperties: NotRequired[EcsPropertiesDetailTypeDef]
|
|
1722
1717
|
isCancelled: NotRequired[bool]
|
|
1723
1718
|
isTerminated: NotRequired[bool]
|
|
@@ -1726,12 +1721,12 @@ class JobDetailTypeDef(TypedDict):
|
|
|
1726
1721
|
NodePropertiesUnionTypeDef = Union[NodePropertiesTypeDef, NodePropertiesOutputTypeDef]
|
|
1727
1722
|
|
|
1728
1723
|
class DescribeJobDefinitionsResponseTypeDef(TypedDict):
|
|
1729
|
-
jobDefinitions:
|
|
1724
|
+
jobDefinitions: list[JobDefinitionTypeDef]
|
|
1730
1725
|
ResponseMetadata: ResponseMetadataTypeDef
|
|
1731
1726
|
nextToken: NotRequired[str]
|
|
1732
1727
|
|
|
1733
1728
|
class DescribeJobsResponseTypeDef(TypedDict):
|
|
1734
|
-
jobs:
|
|
1729
|
+
jobs: list[JobDetailTypeDef]
|
|
1735
1730
|
ResponseMetadata: ResponseMetadataTypeDef
|
|
1736
1731
|
|
|
1737
1732
|
RegisterJobDefinitionRequestTypeDef = TypedDict(
|