types-boto3-batch 1.37.0__py3-none-any.whl → 1.37.22__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/__init__.py +8 -0
- types_boto3_batch/__init__.pyi +8 -0
- types_boto3_batch/__main__.py +4 -4
- types_boto3_batch/client.py +95 -0
- types_boto3_batch/client.pyi +95 -0
- types_boto3_batch/literals.py +13 -1
- types_boto3_batch/literals.pyi +13 -1
- types_boto3_batch/paginator.py +54 -0
- types_boto3_batch/paginator.pyi +48 -0
- types_boto3_batch/type_defs.py +177 -0
- types_boto3_batch/type_defs.pyi +157 -0
- types_boto3_batch/version.py +1 -1
- {types_boto3_batch-1.37.0.dist-info → types_boto3_batch-1.37.22.dist-info}/METADATA +15 -6
- types_boto3_batch-1.37.22.dist-info/RECORD +18 -0
- {types_boto3_batch-1.37.0.dist-info → types_boto3_batch-1.37.22.dist-info}/WHEEL +1 -1
- types_boto3_batch-1.37.0.dist-info/RECORD +0 -18
- {types_boto3_batch-1.37.0.dist-info → types_boto3_batch-1.37.22.dist-info/licenses}/LICENSE +0 -0
- {types_boto3_batch-1.37.0.dist-info → types_boto3_batch-1.37.22.dist-info}/top_level.txt +0 -0
types_boto3_batch/paginator.pyi
CHANGED
|
@@ -15,6 +15,8 @@ Usage::
|
|
|
15
15
|
DescribeComputeEnvironmentsPaginator,
|
|
16
16
|
DescribeJobDefinitionsPaginator,
|
|
17
17
|
DescribeJobQueuesPaginator,
|
|
18
|
+
ListConsumableResourcesPaginator,
|
|
19
|
+
ListJobsByConsumableResourcePaginator,
|
|
18
20
|
ListJobsPaginator,
|
|
19
21
|
ListSchedulingPoliciesPaginator,
|
|
20
22
|
)
|
|
@@ -25,6 +27,8 @@ Usage::
|
|
|
25
27
|
describe_compute_environments_paginator: DescribeComputeEnvironmentsPaginator = client.get_paginator("describe_compute_environments")
|
|
26
28
|
describe_job_definitions_paginator: DescribeJobDefinitionsPaginator = client.get_paginator("describe_job_definitions")
|
|
27
29
|
describe_job_queues_paginator: DescribeJobQueuesPaginator = client.get_paginator("describe_job_queues")
|
|
30
|
+
list_consumable_resources_paginator: ListConsumableResourcesPaginator = client.get_paginator("list_consumable_resources")
|
|
31
|
+
list_jobs_by_consumable_resource_paginator: ListJobsByConsumableResourcePaginator = client.get_paginator("list_jobs_by_consumable_resource")
|
|
28
32
|
list_jobs_paginator: ListJobsPaginator = client.get_paginator("list_jobs")
|
|
29
33
|
list_scheduling_policies_paginator: ListSchedulingPoliciesPaginator = client.get_paginator("list_scheduling_policies")
|
|
30
34
|
```
|
|
@@ -44,6 +48,10 @@ from .type_defs import (
|
|
|
44
48
|
DescribeJobDefinitionsResponseTypeDef,
|
|
45
49
|
DescribeJobQueuesRequestPaginateTypeDef,
|
|
46
50
|
DescribeJobQueuesResponseTypeDef,
|
|
51
|
+
ListConsumableResourcesRequestPaginateTypeDef,
|
|
52
|
+
ListConsumableResourcesResponseTypeDef,
|
|
53
|
+
ListJobsByConsumableResourceRequestPaginateTypeDef,
|
|
54
|
+
ListJobsByConsumableResourceResponseTypeDef,
|
|
47
55
|
ListJobsRequestPaginateTypeDef,
|
|
48
56
|
ListJobsResponseTypeDef,
|
|
49
57
|
ListSchedulingPoliciesRequestPaginateTypeDef,
|
|
@@ -59,6 +67,8 @@ __all__ = (
|
|
|
59
67
|
"DescribeComputeEnvironmentsPaginator",
|
|
60
68
|
"DescribeJobDefinitionsPaginator",
|
|
61
69
|
"DescribeJobQueuesPaginator",
|
|
70
|
+
"ListConsumableResourcesPaginator",
|
|
71
|
+
"ListJobsByConsumableResourcePaginator",
|
|
62
72
|
"ListJobsPaginator",
|
|
63
73
|
"ListSchedulingPoliciesPaginator",
|
|
64
74
|
)
|
|
@@ -119,6 +129,44 @@ class DescribeJobQueuesPaginator(_DescribeJobQueuesPaginatorBase):
|
|
|
119
129
|
[Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_batch/paginators/#describejobqueuespaginator)
|
|
120
130
|
"""
|
|
121
131
|
|
|
132
|
+
if TYPE_CHECKING:
|
|
133
|
+
_ListConsumableResourcesPaginatorBase = Paginator[ListConsumableResourcesResponseTypeDef]
|
|
134
|
+
else:
|
|
135
|
+
_ListConsumableResourcesPaginatorBase = Paginator # type: ignore[assignment]
|
|
136
|
+
|
|
137
|
+
class ListConsumableResourcesPaginator(_ListConsumableResourcesPaginatorBase):
|
|
138
|
+
"""
|
|
139
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/batch/paginator/ListConsumableResources.html#Batch.Paginator.ListConsumableResources)
|
|
140
|
+
[Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_batch/paginators/#listconsumableresourcespaginator)
|
|
141
|
+
"""
|
|
142
|
+
def paginate( # type: ignore[override]
|
|
143
|
+
self, **kwargs: Unpack[ListConsumableResourcesRequestPaginateTypeDef]
|
|
144
|
+
) -> PageIterator[ListConsumableResourcesResponseTypeDef]:
|
|
145
|
+
"""
|
|
146
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/batch/paginator/ListConsumableResources.html#Batch.Paginator.ListConsumableResources.paginate)
|
|
147
|
+
[Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_batch/paginators/#listconsumableresourcespaginator)
|
|
148
|
+
"""
|
|
149
|
+
|
|
150
|
+
if TYPE_CHECKING:
|
|
151
|
+
_ListJobsByConsumableResourcePaginatorBase = Paginator[
|
|
152
|
+
ListJobsByConsumableResourceResponseTypeDef
|
|
153
|
+
]
|
|
154
|
+
else:
|
|
155
|
+
_ListJobsByConsumableResourcePaginatorBase = Paginator # type: ignore[assignment]
|
|
156
|
+
|
|
157
|
+
class ListJobsByConsumableResourcePaginator(_ListJobsByConsumableResourcePaginatorBase):
|
|
158
|
+
"""
|
|
159
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/batch/paginator/ListJobsByConsumableResource.html#Batch.Paginator.ListJobsByConsumableResource)
|
|
160
|
+
[Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_batch/paginators/#listjobsbyconsumableresourcepaginator)
|
|
161
|
+
"""
|
|
162
|
+
def paginate( # type: ignore[override]
|
|
163
|
+
self, **kwargs: Unpack[ListJobsByConsumableResourceRequestPaginateTypeDef]
|
|
164
|
+
) -> PageIterator[ListJobsByConsumableResourceResponseTypeDef]:
|
|
165
|
+
"""
|
|
166
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/batch/paginator/ListJobsByConsumableResource.html#Batch.Paginator.ListJobsByConsumableResource.paginate)
|
|
167
|
+
[Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_batch/paginators/#listjobsbyconsumableresourcepaginator)
|
|
168
|
+
"""
|
|
169
|
+
|
|
122
170
|
if TYPE_CHECKING:
|
|
123
171
|
_ListJobsPaginatorBase = Paginator[ListJobsResponseTypeDef]
|
|
124
172
|
else:
|
types_boto3_batch/type_defs.py
CHANGED
|
@@ -31,6 +31,7 @@ from .literals import (
|
|
|
31
31
|
DeviceCgroupPermissionType,
|
|
32
32
|
EFSAuthorizationConfigIAMType,
|
|
33
33
|
EFSTransitEncryptionType,
|
|
34
|
+
FirelensConfigurationTypeType,
|
|
34
35
|
JobDefinitionTypeType,
|
|
35
36
|
JobStatusType,
|
|
36
37
|
JQStateType,
|
|
@@ -69,6 +70,11 @@ __all__ = (
|
|
|
69
70
|
"ComputeResourceTypeDef",
|
|
70
71
|
"ComputeResourceUnionTypeDef",
|
|
71
72
|
"ComputeResourceUpdateTypeDef",
|
|
73
|
+
"ConsumableResourcePropertiesOutputTypeDef",
|
|
74
|
+
"ConsumableResourcePropertiesTypeDef",
|
|
75
|
+
"ConsumableResourcePropertiesUnionTypeDef",
|
|
76
|
+
"ConsumableResourceRequirementTypeDef",
|
|
77
|
+
"ConsumableResourceSummaryTypeDef",
|
|
72
78
|
"ContainerDetailTypeDef",
|
|
73
79
|
"ContainerOverridesTypeDef",
|
|
74
80
|
"ContainerPropertiesOutputTypeDef",
|
|
@@ -77,17 +83,22 @@ __all__ = (
|
|
|
77
83
|
"ContainerSummaryTypeDef",
|
|
78
84
|
"CreateComputeEnvironmentRequestTypeDef",
|
|
79
85
|
"CreateComputeEnvironmentResponseTypeDef",
|
|
86
|
+
"CreateConsumableResourceRequestTypeDef",
|
|
87
|
+
"CreateConsumableResourceResponseTypeDef",
|
|
80
88
|
"CreateJobQueueRequestTypeDef",
|
|
81
89
|
"CreateJobQueueResponseTypeDef",
|
|
82
90
|
"CreateSchedulingPolicyRequestTypeDef",
|
|
83
91
|
"CreateSchedulingPolicyResponseTypeDef",
|
|
84
92
|
"DeleteComputeEnvironmentRequestTypeDef",
|
|
93
|
+
"DeleteConsumableResourceRequestTypeDef",
|
|
85
94
|
"DeleteJobQueueRequestTypeDef",
|
|
86
95
|
"DeleteSchedulingPolicyRequestTypeDef",
|
|
87
96
|
"DeregisterJobDefinitionRequestTypeDef",
|
|
88
97
|
"DescribeComputeEnvironmentsRequestPaginateTypeDef",
|
|
89
98
|
"DescribeComputeEnvironmentsRequestTypeDef",
|
|
90
99
|
"DescribeComputeEnvironmentsResponseTypeDef",
|
|
100
|
+
"DescribeConsumableResourceRequestTypeDef",
|
|
101
|
+
"DescribeConsumableResourceResponseTypeDef",
|
|
91
102
|
"DescribeJobDefinitionsRequestPaginateTypeDef",
|
|
92
103
|
"DescribeJobDefinitionsRequestTypeDef",
|
|
93
104
|
"DescribeJobDefinitionsResponseTypeDef",
|
|
@@ -147,6 +158,8 @@ __all__ = (
|
|
|
147
158
|
"FairsharePolicyTypeDef",
|
|
148
159
|
"FairsharePolicyUnionTypeDef",
|
|
149
160
|
"FargatePlatformConfigurationTypeDef",
|
|
161
|
+
"FirelensConfigurationOutputTypeDef",
|
|
162
|
+
"FirelensConfigurationTypeDef",
|
|
150
163
|
"FrontOfQueueDetailTypeDef",
|
|
151
164
|
"FrontOfQueueJobSummaryTypeDef",
|
|
152
165
|
"GetJobQueueSnapshotRequestTypeDef",
|
|
@@ -170,6 +183,13 @@ __all__ = (
|
|
|
170
183
|
"LaunchTemplateSpecificationUnionTypeDef",
|
|
171
184
|
"LinuxParametersOutputTypeDef",
|
|
172
185
|
"LinuxParametersTypeDef",
|
|
186
|
+
"ListConsumableResourcesRequestPaginateTypeDef",
|
|
187
|
+
"ListConsumableResourcesRequestTypeDef",
|
|
188
|
+
"ListConsumableResourcesResponseTypeDef",
|
|
189
|
+
"ListJobsByConsumableResourceRequestPaginateTypeDef",
|
|
190
|
+
"ListJobsByConsumableResourceRequestTypeDef",
|
|
191
|
+
"ListJobsByConsumableResourceResponseTypeDef",
|
|
192
|
+
"ListJobsByConsumableResourceSummaryTypeDef",
|
|
173
193
|
"ListJobsRequestPaginateTypeDef",
|
|
174
194
|
"ListJobsRequestTypeDef",
|
|
175
195
|
"ListJobsResponseTypeDef",
|
|
@@ -222,6 +242,8 @@ __all__ = (
|
|
|
222
242
|
"UntagResourceRequestTypeDef",
|
|
223
243
|
"UpdateComputeEnvironmentRequestTypeDef",
|
|
224
244
|
"UpdateComputeEnvironmentResponseTypeDef",
|
|
245
|
+
"UpdateConsumableResourceRequestTypeDef",
|
|
246
|
+
"UpdateConsumableResourceResponseTypeDef",
|
|
225
247
|
"UpdateJobQueueRequestTypeDef",
|
|
226
248
|
"UpdateJobQueueResponseTypeDef",
|
|
227
249
|
"UpdatePolicyTypeDef",
|
|
@@ -277,6 +299,19 @@ class Ec2ConfigurationTypeDef(TypedDict):
|
|
|
277
299
|
imageKubernetesVersion: NotRequired[str]
|
|
278
300
|
|
|
279
301
|
|
|
302
|
+
class ConsumableResourceRequirementTypeDef(TypedDict):
|
|
303
|
+
consumableResource: NotRequired[str]
|
|
304
|
+
quantity: NotRequired[int]
|
|
305
|
+
|
|
306
|
+
|
|
307
|
+
class ConsumableResourceSummaryTypeDef(TypedDict):
|
|
308
|
+
consumableResourceArn: str
|
|
309
|
+
consumableResourceName: str
|
|
310
|
+
totalQuantity: NotRequired[int]
|
|
311
|
+
inUseQuantity: NotRequired[int]
|
|
312
|
+
resourceType: NotRequired[str]
|
|
313
|
+
|
|
314
|
+
|
|
280
315
|
class EphemeralStorageTypeDef(TypedDict):
|
|
281
316
|
sizeInGiB: int
|
|
282
317
|
|
|
@@ -342,6 +377,13 @@ class ResponseMetadataTypeDef(TypedDict):
|
|
|
342
377
|
HostId: NotRequired[str]
|
|
343
378
|
|
|
344
379
|
|
|
380
|
+
class CreateConsumableResourceRequestTypeDef(TypedDict):
|
|
381
|
+
consumableResourceName: str
|
|
382
|
+
totalQuantity: NotRequired[int]
|
|
383
|
+
resourceType: NotRequired[str]
|
|
384
|
+
tags: NotRequired[Mapping[str, str]]
|
|
385
|
+
|
|
386
|
+
|
|
345
387
|
class JobStateTimeLimitActionTypeDef(TypedDict):
|
|
346
388
|
reason: str
|
|
347
389
|
state: Literal["RUNNABLE"]
|
|
@@ -353,6 +395,10 @@ class DeleteComputeEnvironmentRequestTypeDef(TypedDict):
|
|
|
353
395
|
computeEnvironment: str
|
|
354
396
|
|
|
355
397
|
|
|
398
|
+
class DeleteConsumableResourceRequestTypeDef(TypedDict):
|
|
399
|
+
consumableResource: str
|
|
400
|
+
|
|
401
|
+
|
|
356
402
|
class DeleteJobQueueRequestTypeDef(TypedDict):
|
|
357
403
|
jobQueue: str
|
|
358
404
|
|
|
@@ -377,6 +423,10 @@ class DescribeComputeEnvironmentsRequestTypeDef(TypedDict):
|
|
|
377
423
|
nextToken: NotRequired[str]
|
|
378
424
|
|
|
379
425
|
|
|
426
|
+
class DescribeConsumableResourceRequestTypeDef(TypedDict):
|
|
427
|
+
consumableResource: str
|
|
428
|
+
|
|
429
|
+
|
|
380
430
|
class DescribeJobDefinitionsRequestTypeDef(TypedDict):
|
|
381
431
|
jobDefinitions: NotRequired[Sequence[str]]
|
|
382
432
|
maxResults: NotRequired[int]
|
|
@@ -501,6 +551,22 @@ class ShareAttributesTypeDef(TypedDict):
|
|
|
501
551
|
weightFactor: NotRequired[float]
|
|
502
552
|
|
|
503
553
|
|
|
554
|
+
FirelensConfigurationOutputTypeDef = TypedDict(
|
|
555
|
+
"FirelensConfigurationOutputTypeDef",
|
|
556
|
+
{
|
|
557
|
+
"type": FirelensConfigurationTypeType,
|
|
558
|
+
"options": NotRequired[Dict[str, str]],
|
|
559
|
+
},
|
|
560
|
+
)
|
|
561
|
+
FirelensConfigurationTypeDef = TypedDict(
|
|
562
|
+
"FirelensConfigurationTypeDef",
|
|
563
|
+
{
|
|
564
|
+
"type": FirelensConfigurationTypeType,
|
|
565
|
+
"options": NotRequired[Mapping[str, str]],
|
|
566
|
+
},
|
|
567
|
+
)
|
|
568
|
+
|
|
569
|
+
|
|
504
570
|
class FrontOfQueueJobSummaryTypeDef(TypedDict):
|
|
505
571
|
jobArn: NotRequired[str]
|
|
506
572
|
earliestTimeAtPosition: NotRequired[int]
|
|
@@ -602,6 +668,13 @@ class UntagResourceRequestTypeDef(TypedDict):
|
|
|
602
668
|
tagKeys: Sequence[str]
|
|
603
669
|
|
|
604
670
|
|
|
671
|
+
class UpdateConsumableResourceRequestTypeDef(TypedDict):
|
|
672
|
+
consumableResource: str
|
|
673
|
+
operation: NotRequired[str]
|
|
674
|
+
quantity: NotRequired[int]
|
|
675
|
+
clientToken: NotRequired[str]
|
|
676
|
+
|
|
677
|
+
|
|
605
678
|
class AttemptContainerDetailTypeDef(TypedDict):
|
|
606
679
|
containerInstanceArn: NotRequired[str]
|
|
607
680
|
taskArn: NotRequired[str]
|
|
@@ -619,6 +692,14 @@ class AttemptTaskContainerDetailsTypeDef(TypedDict):
|
|
|
619
692
|
networkInterfaces: NotRequired[List[NetworkInterfaceTypeDef]]
|
|
620
693
|
|
|
621
694
|
|
|
695
|
+
class ConsumableResourcePropertiesOutputTypeDef(TypedDict):
|
|
696
|
+
consumableResourceList: NotRequired[List[ConsumableResourceRequirementTypeDef]]
|
|
697
|
+
|
|
698
|
+
|
|
699
|
+
class ConsumableResourcePropertiesTypeDef(TypedDict):
|
|
700
|
+
consumableResourceList: NotRequired[Sequence[ConsumableResourceRequirementTypeDef]]
|
|
701
|
+
|
|
702
|
+
|
|
622
703
|
class ContainerOverridesTypeDef(TypedDict):
|
|
623
704
|
vcpus: NotRequired[int]
|
|
624
705
|
memory: NotRequired[int]
|
|
@@ -653,6 +734,12 @@ class CreateComputeEnvironmentResponseTypeDef(TypedDict):
|
|
|
653
734
|
ResponseMetadata: ResponseMetadataTypeDef
|
|
654
735
|
|
|
655
736
|
|
|
737
|
+
class CreateConsumableResourceResponseTypeDef(TypedDict):
|
|
738
|
+
consumableResourceName: str
|
|
739
|
+
consumableResourceArn: str
|
|
740
|
+
ResponseMetadata: ResponseMetadataTypeDef
|
|
741
|
+
|
|
742
|
+
|
|
656
743
|
class CreateJobQueueResponseTypeDef(TypedDict):
|
|
657
744
|
jobQueueName: str
|
|
658
745
|
jobQueueArn: str
|
|
@@ -665,6 +752,24 @@ class CreateSchedulingPolicyResponseTypeDef(TypedDict):
|
|
|
665
752
|
ResponseMetadata: ResponseMetadataTypeDef
|
|
666
753
|
|
|
667
754
|
|
|
755
|
+
class DescribeConsumableResourceResponseTypeDef(TypedDict):
|
|
756
|
+
consumableResourceName: str
|
|
757
|
+
consumableResourceArn: str
|
|
758
|
+
totalQuantity: int
|
|
759
|
+
inUseQuantity: int
|
|
760
|
+
availableQuantity: int
|
|
761
|
+
resourceType: str
|
|
762
|
+
createdAt: int
|
|
763
|
+
tags: Dict[str, str]
|
|
764
|
+
ResponseMetadata: ResponseMetadataTypeDef
|
|
765
|
+
|
|
766
|
+
|
|
767
|
+
class ListConsumableResourcesResponseTypeDef(TypedDict):
|
|
768
|
+
consumableResources: List[ConsumableResourceSummaryTypeDef]
|
|
769
|
+
ResponseMetadata: ResponseMetadataTypeDef
|
|
770
|
+
nextToken: NotRequired[str]
|
|
771
|
+
|
|
772
|
+
|
|
668
773
|
class ListTagsForResourceResponseTypeDef(TypedDict):
|
|
669
774
|
tags: Dict[str, str]
|
|
670
775
|
ResponseMetadata: ResponseMetadataTypeDef
|
|
@@ -690,6 +795,13 @@ class UpdateComputeEnvironmentResponseTypeDef(TypedDict):
|
|
|
690
795
|
ResponseMetadata: ResponseMetadataTypeDef
|
|
691
796
|
|
|
692
797
|
|
|
798
|
+
class UpdateConsumableResourceResponseTypeDef(TypedDict):
|
|
799
|
+
consumableResourceName: str
|
|
800
|
+
consumableResourceArn: str
|
|
801
|
+
totalQuantity: int
|
|
802
|
+
ResponseMetadata: ResponseMetadataTypeDef
|
|
803
|
+
|
|
804
|
+
|
|
693
805
|
class UpdateJobQueueResponseTypeDef(TypedDict):
|
|
694
806
|
jobQueueName: str
|
|
695
807
|
jobQueueArn: str
|
|
@@ -865,6 +977,30 @@ class JobSummaryTypeDef(TypedDict):
|
|
|
865
977
|
jobDefinition: NotRequired[str]
|
|
866
978
|
|
|
867
979
|
|
|
980
|
+
class ListConsumableResourcesRequestPaginateTypeDef(TypedDict):
|
|
981
|
+
filters: NotRequired[Sequence[KeyValuesPairTypeDef]]
|
|
982
|
+
PaginationConfig: NotRequired[PaginatorConfigTypeDef]
|
|
983
|
+
|
|
984
|
+
|
|
985
|
+
class ListConsumableResourcesRequestTypeDef(TypedDict):
|
|
986
|
+
filters: NotRequired[Sequence[KeyValuesPairTypeDef]]
|
|
987
|
+
maxResults: NotRequired[int]
|
|
988
|
+
nextToken: NotRequired[str]
|
|
989
|
+
|
|
990
|
+
|
|
991
|
+
class ListJobsByConsumableResourceRequestPaginateTypeDef(TypedDict):
|
|
992
|
+
consumableResource: str
|
|
993
|
+
filters: NotRequired[Sequence[KeyValuesPairTypeDef]]
|
|
994
|
+
PaginationConfig: NotRequired[PaginatorConfigTypeDef]
|
|
995
|
+
|
|
996
|
+
|
|
997
|
+
class ListJobsByConsumableResourceRequestTypeDef(TypedDict):
|
|
998
|
+
consumableResource: str
|
|
999
|
+
filters: NotRequired[Sequence[KeyValuesPairTypeDef]]
|
|
1000
|
+
maxResults: NotRequired[int]
|
|
1001
|
+
nextToken: NotRequired[str]
|
|
1002
|
+
|
|
1003
|
+
|
|
868
1004
|
class ListJobsRequestPaginateTypeDef(TypedDict):
|
|
869
1005
|
jobQueue: NotRequired[str]
|
|
870
1006
|
arrayJobId: NotRequired[str]
|
|
@@ -926,6 +1062,25 @@ class AttemptEcsTaskDetailsTypeDef(TypedDict):
|
|
|
926
1062
|
containers: NotRequired[List[AttemptTaskContainerDetailsTypeDef]]
|
|
927
1063
|
|
|
928
1064
|
|
|
1065
|
+
class ListJobsByConsumableResourceSummaryTypeDef(TypedDict):
|
|
1066
|
+
jobArn: str
|
|
1067
|
+
jobQueueArn: str
|
|
1068
|
+
jobName: str
|
|
1069
|
+
jobStatus: str
|
|
1070
|
+
quantity: int
|
|
1071
|
+
createdAt: int
|
|
1072
|
+
consumableResourceProperties: ConsumableResourcePropertiesOutputTypeDef
|
|
1073
|
+
jobDefinitionArn: NotRequired[str]
|
|
1074
|
+
shareIdentifier: NotRequired[str]
|
|
1075
|
+
statusReason: NotRequired[str]
|
|
1076
|
+
startedAt: NotRequired[int]
|
|
1077
|
+
|
|
1078
|
+
|
|
1079
|
+
ConsumableResourcePropertiesUnionTypeDef = Union[
|
|
1080
|
+
ConsumableResourcePropertiesTypeDef, ConsumableResourcePropertiesOutputTypeDef
|
|
1081
|
+
]
|
|
1082
|
+
|
|
1083
|
+
|
|
929
1084
|
class TaskPropertiesOverrideTypeDef(TypedDict):
|
|
930
1085
|
containers: NotRequired[Sequence[TaskContainerOverridesTypeDef]]
|
|
931
1086
|
|
|
@@ -1049,6 +1204,7 @@ class TaskContainerDetailsTypeDef(TypedDict):
|
|
|
1049
1204
|
dependsOn: NotRequired[List[TaskContainerDependencyTypeDef]]
|
|
1050
1205
|
environment: NotRequired[List[KeyValuePairTypeDef]]
|
|
1051
1206
|
essential: NotRequired[bool]
|
|
1207
|
+
firelensConfiguration: NotRequired[FirelensConfigurationOutputTypeDef]
|
|
1052
1208
|
image: NotRequired[str]
|
|
1053
1209
|
linuxParameters: NotRequired[LinuxParametersOutputTypeDef]
|
|
1054
1210
|
logConfiguration: NotRequired[LogConfigurationOutputTypeDef]
|
|
@@ -1073,6 +1229,7 @@ class TaskContainerPropertiesOutputTypeDef(TypedDict):
|
|
|
1073
1229
|
dependsOn: NotRequired[List[TaskContainerDependencyTypeDef]]
|
|
1074
1230
|
environment: NotRequired[List[KeyValuePairTypeDef]]
|
|
1075
1231
|
essential: NotRequired[bool]
|
|
1232
|
+
firelensConfiguration: NotRequired[FirelensConfigurationOutputTypeDef]
|
|
1076
1233
|
linuxParameters: NotRequired[LinuxParametersOutputTypeDef]
|
|
1077
1234
|
logConfiguration: NotRequired[LogConfigurationOutputTypeDef]
|
|
1078
1235
|
mountPoints: NotRequired[List[MountPointTypeDef]]
|
|
@@ -1092,6 +1249,7 @@ class TaskContainerPropertiesTypeDef(TypedDict):
|
|
|
1092
1249
|
dependsOn: NotRequired[Sequence[TaskContainerDependencyTypeDef]]
|
|
1093
1250
|
environment: NotRequired[Sequence[KeyValuePairTypeDef]]
|
|
1094
1251
|
essential: NotRequired[bool]
|
|
1252
|
+
firelensConfiguration: NotRequired[FirelensConfigurationTypeDef]
|
|
1095
1253
|
linuxParameters: NotRequired[LinuxParametersTypeDef]
|
|
1096
1254
|
logConfiguration: NotRequired[LogConfigurationTypeDef]
|
|
1097
1255
|
mountPoints: NotRequired[Sequence[MountPointTypeDef]]
|
|
@@ -1113,6 +1271,12 @@ class AttemptDetailTypeDef(TypedDict):
|
|
|
1113
1271
|
taskProperties: NotRequired[List[AttemptEcsTaskDetailsTypeDef]]
|
|
1114
1272
|
|
|
1115
1273
|
|
|
1274
|
+
class ListJobsByConsumableResourceResponseTypeDef(TypedDict):
|
|
1275
|
+
jobs: List[ListJobsByConsumableResourceSummaryTypeDef]
|
|
1276
|
+
ResponseMetadata: ResponseMetadataTypeDef
|
|
1277
|
+
nextToken: NotRequired[str]
|
|
1278
|
+
|
|
1279
|
+
|
|
1116
1280
|
class EcsPropertiesOverrideTypeDef(TypedDict):
|
|
1117
1281
|
taskProperties: NotRequired[Sequence[TaskPropertiesOverrideTypeDef]]
|
|
1118
1282
|
|
|
@@ -1147,6 +1311,7 @@ class ContainerDetailTypeDef(TypedDict):
|
|
|
1147
1311
|
ephemeralStorage: NotRequired[EphemeralStorageTypeDef]
|
|
1148
1312
|
runtimePlatform: NotRequired[RuntimePlatformTypeDef]
|
|
1149
1313
|
repositoryCredentials: NotRequired[RepositoryCredentialsTypeDef]
|
|
1314
|
+
enableExecuteCommand: NotRequired[bool]
|
|
1150
1315
|
|
|
1151
1316
|
|
|
1152
1317
|
class ContainerPropertiesOutputTypeDef(TypedDict):
|
|
@@ -1170,6 +1335,7 @@ class ContainerPropertiesOutputTypeDef(TypedDict):
|
|
|
1170
1335
|
secrets: NotRequired[List[SecretTypeDef]]
|
|
1171
1336
|
networkConfiguration: NotRequired[NetworkConfigurationTypeDef]
|
|
1172
1337
|
fargatePlatformConfiguration: NotRequired[FargatePlatformConfigurationTypeDef]
|
|
1338
|
+
enableExecuteCommand: NotRequired[bool]
|
|
1173
1339
|
ephemeralStorage: NotRequired[EphemeralStorageTypeDef]
|
|
1174
1340
|
runtimePlatform: NotRequired[RuntimePlatformTypeDef]
|
|
1175
1341
|
repositoryCredentials: NotRequired[RepositoryCredentialsTypeDef]
|
|
@@ -1196,6 +1362,7 @@ class ContainerPropertiesTypeDef(TypedDict):
|
|
|
1196
1362
|
secrets: NotRequired[Sequence[SecretTypeDef]]
|
|
1197
1363
|
networkConfiguration: NotRequired[NetworkConfigurationTypeDef]
|
|
1198
1364
|
fargatePlatformConfiguration: NotRequired[FargatePlatformConfigurationTypeDef]
|
|
1365
|
+
enableExecuteCommand: NotRequired[bool]
|
|
1199
1366
|
ephemeralStorage: NotRequired[EphemeralStorageTypeDef]
|
|
1200
1367
|
runtimePlatform: NotRequired[RuntimePlatformTypeDef]
|
|
1201
1368
|
repositoryCredentials: NotRequired[RepositoryCredentialsTypeDef]
|
|
@@ -1296,6 +1463,7 @@ class EcsTaskDetailsTypeDef(TypedDict):
|
|
|
1296
1463
|
networkConfiguration: NotRequired[NetworkConfigurationTypeDef]
|
|
1297
1464
|
runtimePlatform: NotRequired[RuntimePlatformTypeDef]
|
|
1298
1465
|
volumes: NotRequired[List[VolumeTypeDef]]
|
|
1466
|
+
enableExecuteCommand: NotRequired[bool]
|
|
1299
1467
|
|
|
1300
1468
|
|
|
1301
1469
|
class EcsTaskPropertiesOutputTypeDef(TypedDict):
|
|
@@ -1309,6 +1477,7 @@ class EcsTaskPropertiesOutputTypeDef(TypedDict):
|
|
|
1309
1477
|
networkConfiguration: NotRequired[NetworkConfigurationTypeDef]
|
|
1310
1478
|
runtimePlatform: NotRequired[RuntimePlatformTypeDef]
|
|
1311
1479
|
volumes: NotRequired[List[VolumeTypeDef]]
|
|
1480
|
+
enableExecuteCommand: NotRequired[bool]
|
|
1312
1481
|
|
|
1313
1482
|
|
|
1314
1483
|
class EcsTaskPropertiesTypeDef(TypedDict):
|
|
@@ -1322,6 +1491,7 @@ class EcsTaskPropertiesTypeDef(TypedDict):
|
|
|
1322
1491
|
networkConfiguration: NotRequired[NetworkConfigurationTypeDef]
|
|
1323
1492
|
runtimePlatform: NotRequired[RuntimePlatformTypeDef]
|
|
1324
1493
|
volumes: NotRequired[Sequence[VolumeTypeDef]]
|
|
1494
|
+
enableExecuteCommand: NotRequired[bool]
|
|
1325
1495
|
|
|
1326
1496
|
|
|
1327
1497
|
ContainerPropertiesUnionTypeDef = Union[
|
|
@@ -1385,6 +1555,7 @@ class NodePropertyOverrideTypeDef(TypedDict):
|
|
|
1385
1555
|
ecsPropertiesOverride: NotRequired[EcsPropertiesOverrideTypeDef]
|
|
1386
1556
|
instanceTypes: NotRequired[Sequence[str]]
|
|
1387
1557
|
eksPropertiesOverride: NotRequired[EksPropertiesOverrideTypeDef]
|
|
1558
|
+
consumableResourcePropertiesOverride: NotRequired[ConsumableResourcePropertiesUnionTypeDef]
|
|
1388
1559
|
|
|
1389
1560
|
|
|
1390
1561
|
CreateComputeEnvironmentRequestTypeDef = TypedDict(
|
|
@@ -1419,6 +1590,7 @@ class NodeRangePropertyOutputTypeDef(TypedDict):
|
|
|
1419
1590
|
instanceTypes: NotRequired[List[str]]
|
|
1420
1591
|
ecsProperties: NotRequired[EcsPropertiesOutputTypeDef]
|
|
1421
1592
|
eksProperties: NotRequired[EksPropertiesOutputTypeDef]
|
|
1593
|
+
consumableResourceProperties: NotRequired[ConsumableResourcePropertiesOutputTypeDef]
|
|
1422
1594
|
|
|
1423
1595
|
|
|
1424
1596
|
EcsPropertiesUnionTypeDef = Union[EcsPropertiesTypeDef, EcsPropertiesOutputTypeDef]
|
|
@@ -1430,6 +1602,7 @@ class NodeRangePropertyTypeDef(TypedDict):
|
|
|
1430
1602
|
instanceTypes: NotRequired[Sequence[str]]
|
|
1431
1603
|
ecsProperties: NotRequired[EcsPropertiesTypeDef]
|
|
1432
1604
|
eksProperties: NotRequired[EksPropertiesTypeDef]
|
|
1605
|
+
consumableResourceProperties: NotRequired[ConsumableResourcePropertiesTypeDef]
|
|
1433
1606
|
|
|
1434
1607
|
|
|
1435
1608
|
class NodeOverridesTypeDef(TypedDict):
|
|
@@ -1466,6 +1639,7 @@ class SubmitJobRequestTypeDef(TypedDict):
|
|
|
1466
1639
|
tags: NotRequired[Mapping[str, str]]
|
|
1467
1640
|
eksPropertiesOverride: NotRequired[EksPropertiesOverrideTypeDef]
|
|
1468
1641
|
ecsPropertiesOverride: NotRequired[EcsPropertiesOverrideTypeDef]
|
|
1642
|
+
consumableResourcePropertiesOverride: NotRequired[ConsumableResourcePropertiesUnionTypeDef]
|
|
1469
1643
|
|
|
1470
1644
|
|
|
1471
1645
|
JobDefinitionTypeDef = TypedDict(
|
|
@@ -1488,6 +1662,7 @@ JobDefinitionTypeDef = TypedDict(
|
|
|
1488
1662
|
"ecsProperties": NotRequired[EcsPropertiesOutputTypeDef],
|
|
1489
1663
|
"eksProperties": NotRequired[EksPropertiesOutputTypeDef],
|
|
1490
1664
|
"containerOrchestrationType": NotRequired[OrchestrationTypeType],
|
|
1665
|
+
"consumableResourceProperties": NotRequired[ConsumableResourcePropertiesOutputTypeDef],
|
|
1491
1666
|
},
|
|
1492
1667
|
)
|
|
1493
1668
|
|
|
@@ -1522,6 +1697,7 @@ class JobDetailTypeDef(TypedDict):
|
|
|
1522
1697
|
ecsProperties: NotRequired[EcsPropertiesDetailTypeDef]
|
|
1523
1698
|
isCancelled: NotRequired[bool]
|
|
1524
1699
|
isTerminated: NotRequired[bool]
|
|
1700
|
+
consumableResourceProperties: NotRequired[ConsumableResourcePropertiesOutputTypeDef]
|
|
1525
1701
|
|
|
1526
1702
|
|
|
1527
1703
|
NodePropertiesUnionTypeDef = Union[NodePropertiesTypeDef, NodePropertiesOutputTypeDef]
|
|
@@ -1554,5 +1730,6 @@ RegisterJobDefinitionRequestTypeDef = TypedDict(
|
|
|
1554
1730
|
"platformCapabilities": NotRequired[Sequence[PlatformCapabilityType]],
|
|
1555
1731
|
"eksProperties": NotRequired[EksPropertiesUnionTypeDef],
|
|
1556
1732
|
"ecsProperties": NotRequired[EcsPropertiesUnionTypeDef],
|
|
1733
|
+
"consumableResourceProperties": NotRequired[ConsumableResourcePropertiesUnionTypeDef],
|
|
1557
1734
|
},
|
|
1558
1735
|
)
|