mypy-boto3-sagemaker 1.35.68__py3-none-any.whl → 1.35.75__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.
Potentially problematic release.
This version of mypy-boto3-sagemaker might be problematic. Click here for more details.
- mypy_boto3_sagemaker/__init__.py +16 -0
- mypy_boto3_sagemaker/__init__.pyi +16 -0
- mypy_boto3_sagemaker/__main__.py +4 -4
- mypy_boto3_sagemaker/client.py +525 -72
- mypy_boto3_sagemaker/client.pyi +525 -72
- mypy_boto3_sagemaker/literals.py +84 -0
- mypy_boto3_sagemaker/literals.pyi +84 -0
- mypy_boto3_sagemaker/paginator.py +83 -0
- mypy_boto3_sagemaker/paginator.pyi +75 -0
- mypy_boto3_sagemaker/type_defs.py +600 -0
- mypy_boto3_sagemaker/type_defs.pyi +536 -0
- mypy_boto3_sagemaker/version.py +1 -1
- {mypy_boto3_sagemaker-1.35.68.dist-info → mypy_boto3_sagemaker-1.35.75.dist-info}/METADATA +46 -6
- mypy_boto3_sagemaker-1.35.75.dist-info/RECORD +20 -0
- mypy_boto3_sagemaker-1.35.68.dist-info/RECORD +0 -20
- {mypy_boto3_sagemaker-1.35.68.dist-info → mypy_boto3_sagemaker-1.35.75.dist-info}/LICENSE +0 -0
- {mypy_boto3_sagemaker-1.35.68.dist-info → mypy_boto3_sagemaker-1.35.75.dist-info}/WHEEL +0 -0
- {mypy_boto3_sagemaker-1.35.68.dist-info → mypy_boto3_sagemaker-1.35.75.dist-info}/top_level.txt +0 -0
|
@@ -20,6 +20,7 @@ from typing import Any, Dict, List, Mapping, Sequence, Union
|
|
|
20
20
|
|
|
21
21
|
from .literals import (
|
|
22
22
|
ActionStatusType,
|
|
23
|
+
ActivationStateType,
|
|
23
24
|
AdditionalS3DataSourceDataTypeType,
|
|
24
25
|
AggregationTransformationValueType,
|
|
25
26
|
AlgorithmSortByType,
|
|
@@ -98,6 +99,7 @@ from .literals import (
|
|
|
98
99
|
ExecutionRoleIdentityConfigType,
|
|
99
100
|
ExecutionStatusType,
|
|
100
101
|
FailureHandlingPolicyType,
|
|
102
|
+
FairShareType,
|
|
101
103
|
FeatureGroupSortByType,
|
|
102
104
|
FeatureGroupSortOrderType,
|
|
103
105
|
FeatureGroupStatusType,
|
|
@@ -134,6 +136,7 @@ from .literals import (
|
|
|
134
136
|
InferenceExperimentStatusType,
|
|
135
137
|
InferenceExperimentStopDesiredStateType,
|
|
136
138
|
InputModeType,
|
|
139
|
+
InstanceGroupStatusType,
|
|
137
140
|
InstanceTypeType,
|
|
138
141
|
IsTrackingServerActiveType,
|
|
139
142
|
JobTypeType,
|
|
@@ -194,8 +197,11 @@ from .literals import (
|
|
|
194
197
|
OrderKeyType,
|
|
195
198
|
OutputCompressionTypeType,
|
|
196
199
|
ParameterTypeType,
|
|
200
|
+
PartnerAppStatusType,
|
|
201
|
+
PartnerAppTypeType,
|
|
197
202
|
PipelineExecutionStatusType,
|
|
198
203
|
PipelineStatusType,
|
|
204
|
+
PreemptTeamTasksType,
|
|
199
205
|
ProblemTypeType,
|
|
200
206
|
ProcessingInstanceTypeType,
|
|
201
207
|
ProcessingJobStatusType,
|
|
@@ -219,7 +225,10 @@ from .literals import (
|
|
|
219
225
|
RedshiftResultCompressionTypeType,
|
|
220
226
|
RedshiftResultFormatType,
|
|
221
227
|
RepositoryAccessModeType,
|
|
228
|
+
ReservedCapacityInstanceTypeType,
|
|
229
|
+
ReservedCapacityStatusType,
|
|
222
230
|
ResourceCatalogSortOrderType,
|
|
231
|
+
ResourceSharingStrategyType,
|
|
223
232
|
ResourceTypeType,
|
|
224
233
|
RetentionTypeType,
|
|
225
234
|
RootAccessType,
|
|
@@ -230,7 +239,9 @@ from .literals import (
|
|
|
230
239
|
S3DataDistributionType,
|
|
231
240
|
S3DataTypeType,
|
|
232
241
|
S3ModelDataTypeType,
|
|
242
|
+
SageMakerResourceNameType,
|
|
233
243
|
SagemakerServicecatalogStatusType,
|
|
244
|
+
SchedulerResourceStatusType,
|
|
234
245
|
ScheduleStatusType,
|
|
235
246
|
SearchSortOrderType,
|
|
236
247
|
SecondaryStatusType,
|
|
@@ -239,6 +250,7 @@ from .literals import (
|
|
|
239
250
|
SortActionsByType,
|
|
240
251
|
SortAssociationsByType,
|
|
241
252
|
SortByType,
|
|
253
|
+
SortClusterSchedulerConfigByType,
|
|
242
254
|
SortContextsByType,
|
|
243
255
|
SortExperimentsByType,
|
|
244
256
|
SortInferenceExperimentsByType,
|
|
@@ -246,6 +258,7 @@ from .literals import (
|
|
|
246
258
|
SortOrderType,
|
|
247
259
|
SortPipelineExecutionsByType,
|
|
248
260
|
SortPipelinesByType,
|
|
261
|
+
SortQuotaByType,
|
|
249
262
|
SortTrackingServerByType,
|
|
250
263
|
SortTrialComponentsByType,
|
|
251
264
|
SortTrialsByType,
|
|
@@ -275,6 +288,9 @@ from .literals import (
|
|
|
275
288
|
TrainingJobEarlyStoppingTypeType,
|
|
276
289
|
TrainingJobSortByOptionsType,
|
|
277
290
|
TrainingJobStatusType,
|
|
291
|
+
TrainingPlanSortByType,
|
|
292
|
+
TrainingPlanSortOrderType,
|
|
293
|
+
TrainingPlanStatusType,
|
|
278
294
|
TrainingRepositoryAccessModeType,
|
|
279
295
|
TransformInstanceTypeType,
|
|
280
296
|
TransformJobStatusType,
|
|
@@ -445,6 +461,7 @@ __all__ = (
|
|
|
445
461
|
"ClusterNodeSummaryTypeDef",
|
|
446
462
|
"ClusterOrchestratorEksConfigTypeDef",
|
|
447
463
|
"ClusterOrchestratorTypeDef",
|
|
464
|
+
"ClusterSchedulerConfigSummaryTypeDef",
|
|
448
465
|
"ClusterSummaryTypeDef",
|
|
449
466
|
"CodeEditorAppImageConfigOutputTypeDef",
|
|
450
467
|
"CodeEditorAppImageConfigTypeDef",
|
|
@@ -460,6 +477,11 @@ __all__ = (
|
|
|
460
477
|
"CollectionConfigurationTypeDef",
|
|
461
478
|
"CollectionConfigurationUnionTypeDef",
|
|
462
479
|
"CompilationJobSummaryTypeDef",
|
|
480
|
+
"ComputeQuotaConfigOutputTypeDef",
|
|
481
|
+
"ComputeQuotaConfigTypeDef",
|
|
482
|
+
"ComputeQuotaResourceConfigTypeDef",
|
|
483
|
+
"ComputeQuotaSummaryTypeDef",
|
|
484
|
+
"ComputeQuotaTargetTypeDef",
|
|
463
485
|
"ConditionStepMetadataTypeDef",
|
|
464
486
|
"ContainerConfigOutputTypeDef",
|
|
465
487
|
"ContainerConfigTypeDef",
|
|
@@ -488,10 +510,14 @@ __all__ = (
|
|
|
488
510
|
"CreateAutoMLJobV2ResponseTypeDef",
|
|
489
511
|
"CreateClusterRequestRequestTypeDef",
|
|
490
512
|
"CreateClusterResponseTypeDef",
|
|
513
|
+
"CreateClusterSchedulerConfigRequestRequestTypeDef",
|
|
514
|
+
"CreateClusterSchedulerConfigResponseTypeDef",
|
|
491
515
|
"CreateCodeRepositoryInputRequestTypeDef",
|
|
492
516
|
"CreateCodeRepositoryOutputTypeDef",
|
|
493
517
|
"CreateCompilationJobRequestRequestTypeDef",
|
|
494
518
|
"CreateCompilationJobResponseTypeDef",
|
|
519
|
+
"CreateComputeQuotaRequestRequestTypeDef",
|
|
520
|
+
"CreateComputeQuotaResponseTypeDef",
|
|
495
521
|
"CreateContextRequestRequestTypeDef",
|
|
496
522
|
"CreateContextResponseTypeDef",
|
|
497
523
|
"CreateDataQualityJobDefinitionRequestRequestTypeDef",
|
|
@@ -559,6 +585,10 @@ __all__ = (
|
|
|
559
585
|
"CreateNotebookInstanceOutputTypeDef",
|
|
560
586
|
"CreateOptimizationJobRequestRequestTypeDef",
|
|
561
587
|
"CreateOptimizationJobResponseTypeDef",
|
|
588
|
+
"CreatePartnerAppPresignedUrlRequestRequestTypeDef",
|
|
589
|
+
"CreatePartnerAppPresignedUrlResponseTypeDef",
|
|
590
|
+
"CreatePartnerAppRequestRequestTypeDef",
|
|
591
|
+
"CreatePartnerAppResponseTypeDef",
|
|
562
592
|
"CreatePipelineRequestRequestTypeDef",
|
|
563
593
|
"CreatePipelineResponseTypeDef",
|
|
564
594
|
"CreatePresignedDomainUrlRequestRequestTypeDef",
|
|
@@ -577,6 +607,8 @@ __all__ = (
|
|
|
577
607
|
"CreateStudioLifecycleConfigResponseTypeDef",
|
|
578
608
|
"CreateTrainingJobRequestRequestTypeDef",
|
|
579
609
|
"CreateTrainingJobResponseTypeDef",
|
|
610
|
+
"CreateTrainingPlanRequestRequestTypeDef",
|
|
611
|
+
"CreateTrainingPlanResponseTypeDef",
|
|
580
612
|
"CreateTransformJobRequestRequestTypeDef",
|
|
581
613
|
"CreateTransformJobResponseTypeDef",
|
|
582
614
|
"CreateTrialComponentRequestRequestTypeDef",
|
|
@@ -629,8 +661,10 @@ __all__ = (
|
|
|
629
661
|
"DeleteAssociationResponseTypeDef",
|
|
630
662
|
"DeleteClusterRequestRequestTypeDef",
|
|
631
663
|
"DeleteClusterResponseTypeDef",
|
|
664
|
+
"DeleteClusterSchedulerConfigRequestRequestTypeDef",
|
|
632
665
|
"DeleteCodeRepositoryInputRequestTypeDef",
|
|
633
666
|
"DeleteCompilationJobRequestRequestTypeDef",
|
|
667
|
+
"DeleteComputeQuotaRequestRequestTypeDef",
|
|
634
668
|
"DeleteContextRequestRequestTypeDef",
|
|
635
669
|
"DeleteContextResponseTypeDef",
|
|
636
670
|
"DeleteDataQualityJobDefinitionRequestRequestTypeDef",
|
|
@@ -668,6 +702,8 @@ __all__ = (
|
|
|
668
702
|
"DeleteNotebookInstanceInputRequestTypeDef",
|
|
669
703
|
"DeleteNotebookInstanceLifecycleConfigInputRequestTypeDef",
|
|
670
704
|
"DeleteOptimizationJobRequestRequestTypeDef",
|
|
705
|
+
"DeletePartnerAppRequestRequestTypeDef",
|
|
706
|
+
"DeletePartnerAppResponseTypeDef",
|
|
671
707
|
"DeletePipelineRequestRequestTypeDef",
|
|
672
708
|
"DeletePipelineResponseTypeDef",
|
|
673
709
|
"DeleteProjectInputRequestTypeDef",
|
|
@@ -708,10 +744,14 @@ __all__ = (
|
|
|
708
744
|
"DescribeClusterNodeResponseTypeDef",
|
|
709
745
|
"DescribeClusterRequestRequestTypeDef",
|
|
710
746
|
"DescribeClusterResponseTypeDef",
|
|
747
|
+
"DescribeClusterSchedulerConfigRequestRequestTypeDef",
|
|
748
|
+
"DescribeClusterSchedulerConfigResponseTypeDef",
|
|
711
749
|
"DescribeCodeRepositoryInputRequestTypeDef",
|
|
712
750
|
"DescribeCodeRepositoryOutputTypeDef",
|
|
713
751
|
"DescribeCompilationJobRequestRequestTypeDef",
|
|
714
752
|
"DescribeCompilationJobResponseTypeDef",
|
|
753
|
+
"DescribeComputeQuotaRequestRequestTypeDef",
|
|
754
|
+
"DescribeComputeQuotaResponseTypeDef",
|
|
715
755
|
"DescribeContextRequestRequestTypeDef",
|
|
716
756
|
"DescribeContextResponseTypeDef",
|
|
717
757
|
"DescribeDataQualityJobDefinitionRequestRequestTypeDef",
|
|
@@ -796,6 +836,8 @@ __all__ = (
|
|
|
796
836
|
"DescribeNotebookInstanceOutputTypeDef",
|
|
797
837
|
"DescribeOptimizationJobRequestRequestTypeDef",
|
|
798
838
|
"DescribeOptimizationJobResponseTypeDef",
|
|
839
|
+
"DescribePartnerAppRequestRequestTypeDef",
|
|
840
|
+
"DescribePartnerAppResponseTypeDef",
|
|
799
841
|
"DescribePipelineDefinitionForExecutionRequestRequestTypeDef",
|
|
800
842
|
"DescribePipelineDefinitionForExecutionResponseTypeDef",
|
|
801
843
|
"DescribePipelineExecutionRequestRequestTypeDef",
|
|
@@ -816,6 +858,8 @@ __all__ = (
|
|
|
816
858
|
"DescribeTrainingJobRequestRequestTypeDef",
|
|
817
859
|
"DescribeTrainingJobRequestTrainingJobCompletedOrStoppedWaitTypeDef",
|
|
818
860
|
"DescribeTrainingJobResponseTypeDef",
|
|
861
|
+
"DescribeTrainingPlanRequestRequestTypeDef",
|
|
862
|
+
"DescribeTrainingPlanResponseTypeDef",
|
|
819
863
|
"DescribeTransformJobRequestRequestTypeDef",
|
|
820
864
|
"DescribeTransformJobRequestTransformJobCompletedOrStoppedWaitTypeDef",
|
|
821
865
|
"DescribeTransformJobResponseTypeDef",
|
|
@@ -892,6 +936,7 @@ __all__ = (
|
|
|
892
936
|
"EnvironmentParameterRangesTypeDef",
|
|
893
937
|
"EnvironmentParameterRangesUnionTypeDef",
|
|
894
938
|
"EnvironmentParameterTypeDef",
|
|
939
|
+
"ErrorInfoTypeDef",
|
|
895
940
|
"ExperimentConfigTypeDef",
|
|
896
941
|
"ExperimentSourceTypeDef",
|
|
897
942
|
"ExperimentSummaryTypeDef",
|
|
@@ -899,6 +944,8 @@ __all__ = (
|
|
|
899
944
|
"ExplainabilityTypeDef",
|
|
900
945
|
"ExplainerConfigOutputTypeDef",
|
|
901
946
|
"ExplainerConfigTypeDef",
|
|
947
|
+
"FSxLustreFileSystemConfigTypeDef",
|
|
948
|
+
"FSxLustreFileSystemTypeDef",
|
|
902
949
|
"FailStepMetadataTypeDef",
|
|
903
950
|
"FeatureDefinitionTypeDef",
|
|
904
951
|
"FeatureGroupSummaryTypeDef",
|
|
@@ -1074,6 +1121,9 @@ __all__ = (
|
|
|
1074
1121
|
"ListClusterNodesRequestListClusterNodesPaginateTypeDef",
|
|
1075
1122
|
"ListClusterNodesRequestRequestTypeDef",
|
|
1076
1123
|
"ListClusterNodesResponseTypeDef",
|
|
1124
|
+
"ListClusterSchedulerConfigsRequestListClusterSchedulerConfigsPaginateTypeDef",
|
|
1125
|
+
"ListClusterSchedulerConfigsRequestRequestTypeDef",
|
|
1126
|
+
"ListClusterSchedulerConfigsResponseTypeDef",
|
|
1077
1127
|
"ListClustersRequestListClustersPaginateTypeDef",
|
|
1078
1128
|
"ListClustersRequestRequestTypeDef",
|
|
1079
1129
|
"ListClustersResponseTypeDef",
|
|
@@ -1083,6 +1133,9 @@ __all__ = (
|
|
|
1083
1133
|
"ListCompilationJobsRequestListCompilationJobsPaginateTypeDef",
|
|
1084
1134
|
"ListCompilationJobsRequestRequestTypeDef",
|
|
1085
1135
|
"ListCompilationJobsResponseTypeDef",
|
|
1136
|
+
"ListComputeQuotasRequestListComputeQuotasPaginateTypeDef",
|
|
1137
|
+
"ListComputeQuotasRequestRequestTypeDef",
|
|
1138
|
+
"ListComputeQuotasResponseTypeDef",
|
|
1086
1139
|
"ListContextsRequestListContextsPaginateTypeDef",
|
|
1087
1140
|
"ListContextsRequestRequestTypeDef",
|
|
1088
1141
|
"ListContextsResponseTypeDef",
|
|
@@ -1212,6 +1265,9 @@ __all__ = (
|
|
|
1212
1265
|
"ListOptimizationJobsRequestListOptimizationJobsPaginateTypeDef",
|
|
1213
1266
|
"ListOptimizationJobsRequestRequestTypeDef",
|
|
1214
1267
|
"ListOptimizationJobsResponseTypeDef",
|
|
1268
|
+
"ListPartnerAppsRequestListPartnerAppsPaginateTypeDef",
|
|
1269
|
+
"ListPartnerAppsRequestRequestTypeDef",
|
|
1270
|
+
"ListPartnerAppsResponseTypeDef",
|
|
1215
1271
|
"ListPipelineExecutionStepsRequestListPipelineExecutionStepsPaginateTypeDef",
|
|
1216
1272
|
"ListPipelineExecutionStepsRequestRequestTypeDef",
|
|
1217
1273
|
"ListPipelineExecutionStepsResponseTypeDef",
|
|
@@ -1253,6 +1309,9 @@ __all__ = (
|
|
|
1253
1309
|
"ListTrainingJobsRequestListTrainingJobsPaginateTypeDef",
|
|
1254
1310
|
"ListTrainingJobsRequestRequestTypeDef",
|
|
1255
1311
|
"ListTrainingJobsResponseTypeDef",
|
|
1312
|
+
"ListTrainingPlansRequestListTrainingPlansPaginateTypeDef",
|
|
1313
|
+
"ListTrainingPlansRequestRequestTypeDef",
|
|
1314
|
+
"ListTrainingPlansResponseTypeDef",
|
|
1256
1315
|
"ListTransformJobsRequestListTransformJobsPaginateTypeDef",
|
|
1257
1316
|
"ListTransformJobsRequestRequestTypeDef",
|
|
1258
1317
|
"ListTransformJobsResponseTypeDef",
|
|
@@ -1442,6 +1501,10 @@ __all__ = (
|
|
|
1442
1501
|
"ParameterTypeDef",
|
|
1443
1502
|
"ParentHyperParameterTuningJobTypeDef",
|
|
1444
1503
|
"ParentTypeDef",
|
|
1504
|
+
"PartnerAppConfigOutputTypeDef",
|
|
1505
|
+
"PartnerAppConfigTypeDef",
|
|
1506
|
+
"PartnerAppMaintenanceConfigTypeDef",
|
|
1507
|
+
"PartnerAppSummaryTypeDef",
|
|
1445
1508
|
"PendingDeploymentSummaryTypeDef",
|
|
1446
1509
|
"PendingProductionVariantSummaryTypeDef",
|
|
1447
1510
|
"PhaseTypeDef",
|
|
@@ -1454,6 +1517,7 @@ __all__ = (
|
|
|
1454
1517
|
"PipelineSummaryTypeDef",
|
|
1455
1518
|
"PipelineTypeDef",
|
|
1456
1519
|
"PredefinedMetricSpecificationTypeDef",
|
|
1520
|
+
"PriorityClassTypeDef",
|
|
1457
1521
|
"ProcessingClusterConfigTypeDef",
|
|
1458
1522
|
"ProcessingFeatureStoreOutputTypeDef",
|
|
1459
1523
|
"ProcessingInputTypeDef",
|
|
@@ -1530,6 +1594,8 @@ __all__ = (
|
|
|
1530
1594
|
"RenderableTaskTypeDef",
|
|
1531
1595
|
"RenderingErrorTypeDef",
|
|
1532
1596
|
"RepositoryAuthConfigTypeDef",
|
|
1597
|
+
"ReservedCapacityOfferingTypeDef",
|
|
1598
|
+
"ReservedCapacitySummaryTypeDef",
|
|
1533
1599
|
"ResolvedAttributesTypeDef",
|
|
1534
1600
|
"ResourceCatalogTypeDef",
|
|
1535
1601
|
"ResourceConfigForUpdateTypeDef",
|
|
@@ -1537,6 +1603,7 @@ __all__ = (
|
|
|
1537
1603
|
"ResourceConfigTypeDef",
|
|
1538
1604
|
"ResourceConfigUnionTypeDef",
|
|
1539
1605
|
"ResourceLimitsTypeDef",
|
|
1606
|
+
"ResourceSharingConfigTypeDef",
|
|
1540
1607
|
"ResourceSpecTypeDef",
|
|
1541
1608
|
"ResponseMetadataTypeDef",
|
|
1542
1609
|
"RetentionPolicyTypeDef",
|
|
@@ -1554,12 +1621,16 @@ __all__ = (
|
|
|
1554
1621
|
"ScalingPolicyObjectiveTypeDef",
|
|
1555
1622
|
"ScalingPolicyTypeDef",
|
|
1556
1623
|
"ScheduleConfigTypeDef",
|
|
1624
|
+
"SchedulerConfigOutputTypeDef",
|
|
1625
|
+
"SchedulerConfigTypeDef",
|
|
1557
1626
|
"SearchExpressionPaginatorTypeDef",
|
|
1558
1627
|
"SearchExpressionTypeDef",
|
|
1559
1628
|
"SearchRecordTypeDef",
|
|
1560
1629
|
"SearchRequestRequestTypeDef",
|
|
1561
1630
|
"SearchRequestSearchPaginateTypeDef",
|
|
1562
1631
|
"SearchResponseTypeDef",
|
|
1632
|
+
"SearchTrainingPlanOfferingsRequestRequestTypeDef",
|
|
1633
|
+
"SearchTrainingPlanOfferingsResponseTypeDef",
|
|
1563
1634
|
"SecondaryStatusTransitionTypeDef",
|
|
1564
1635
|
"SelectedStepTypeDef",
|
|
1565
1636
|
"SelectiveExecutionConfigOutputTypeDef",
|
|
@@ -1674,6 +1745,9 @@ __all__ = (
|
|
|
1674
1745
|
"TrainingJobStepMetadataTypeDef",
|
|
1675
1746
|
"TrainingJobSummaryTypeDef",
|
|
1676
1747
|
"TrainingJobTypeDef",
|
|
1748
|
+
"TrainingPlanFilterTypeDef",
|
|
1749
|
+
"TrainingPlanOfferingTypeDef",
|
|
1750
|
+
"TrainingPlanSummaryTypeDef",
|
|
1677
1751
|
"TrainingRepositoryAuthConfigTypeDef",
|
|
1678
1752
|
"TrainingSpecificationOutputTypeDef",
|
|
1679
1753
|
"TrainingSpecificationTypeDef",
|
|
@@ -1715,10 +1789,14 @@ __all__ = (
|
|
|
1715
1789
|
"UpdateArtifactResponseTypeDef",
|
|
1716
1790
|
"UpdateClusterRequestRequestTypeDef",
|
|
1717
1791
|
"UpdateClusterResponseTypeDef",
|
|
1792
|
+
"UpdateClusterSchedulerConfigRequestRequestTypeDef",
|
|
1793
|
+
"UpdateClusterSchedulerConfigResponseTypeDef",
|
|
1718
1794
|
"UpdateClusterSoftwareRequestRequestTypeDef",
|
|
1719
1795
|
"UpdateClusterSoftwareResponseTypeDef",
|
|
1720
1796
|
"UpdateCodeRepositoryInputRequestTypeDef",
|
|
1721
1797
|
"UpdateCodeRepositoryOutputTypeDef",
|
|
1798
|
+
"UpdateComputeQuotaRequestRequestTypeDef",
|
|
1799
|
+
"UpdateComputeQuotaResponseTypeDef",
|
|
1722
1800
|
"UpdateContextRequestRequestTypeDef",
|
|
1723
1801
|
"UpdateContextResponseTypeDef",
|
|
1724
1802
|
"UpdateDeviceFleetRequestRequestTypeDef",
|
|
@@ -1758,6 +1836,8 @@ __all__ = (
|
|
|
1758
1836
|
"UpdateMonitoringScheduleResponseTypeDef",
|
|
1759
1837
|
"UpdateNotebookInstanceInputRequestTypeDef",
|
|
1760
1838
|
"UpdateNotebookInstanceLifecycleConfigInputRequestTypeDef",
|
|
1839
|
+
"UpdatePartnerAppRequestRequestTypeDef",
|
|
1840
|
+
"UpdatePartnerAppResponseTypeDef",
|
|
1761
1841
|
"UpdatePipelineExecutionRequestRequestTypeDef",
|
|
1762
1842
|
"UpdatePipelineExecutionResponseTypeDef",
|
|
1763
1843
|
"UpdatePipelineRequestRequestTypeDef",
|
|
@@ -2277,11 +2357,23 @@ class ClusterOrchestratorEksConfigTypeDef(TypedDict):
|
|
|
2277
2357
|
ClusterArn: str
|
|
2278
2358
|
|
|
2279
2359
|
|
|
2360
|
+
class ClusterSchedulerConfigSummaryTypeDef(TypedDict):
|
|
2361
|
+
ClusterSchedulerConfigArn: str
|
|
2362
|
+
ClusterSchedulerConfigId: str
|
|
2363
|
+
Name: str
|
|
2364
|
+
CreationTime: datetime
|
|
2365
|
+
Status: SchedulerResourceStatusType
|
|
2366
|
+
ClusterSchedulerConfigVersion: NotRequired[int]
|
|
2367
|
+
LastModifiedTime: NotRequired[datetime]
|
|
2368
|
+
ClusterArn: NotRequired[str]
|
|
2369
|
+
|
|
2370
|
+
|
|
2280
2371
|
class ClusterSummaryTypeDef(TypedDict):
|
|
2281
2372
|
ClusterArn: str
|
|
2282
2373
|
ClusterName: str
|
|
2283
2374
|
CreationTime: datetime
|
|
2284
2375
|
ClusterStatus: ClusterStatusType
|
|
2376
|
+
TrainingPlanArns: NotRequired[List[str]]
|
|
2285
2377
|
|
|
2286
2378
|
|
|
2287
2379
|
class ContainerConfigOutputTypeDef(TypedDict):
|
|
@@ -2351,6 +2443,21 @@ class CompilationJobSummaryTypeDef(TypedDict):
|
|
|
2351
2443
|
LastModifiedTime: NotRequired[datetime]
|
|
2352
2444
|
|
|
2353
2445
|
|
|
2446
|
+
class ComputeQuotaResourceConfigTypeDef(TypedDict):
|
|
2447
|
+
InstanceType: ClusterInstanceTypeType
|
|
2448
|
+
Count: int
|
|
2449
|
+
|
|
2450
|
+
|
|
2451
|
+
class ResourceSharingConfigTypeDef(TypedDict):
|
|
2452
|
+
Strategy: ResourceSharingStrategyType
|
|
2453
|
+
BorrowLimit: NotRequired[int]
|
|
2454
|
+
|
|
2455
|
+
|
|
2456
|
+
class ComputeQuotaTargetTypeDef(TypedDict):
|
|
2457
|
+
TeamName: str
|
|
2458
|
+
FairShareWeight: NotRequired[int]
|
|
2459
|
+
|
|
2460
|
+
|
|
2354
2461
|
class ConditionStepMetadataTypeDef(TypedDict):
|
|
2355
2462
|
Outcome: NotRequired[ConditionOutcomeType]
|
|
2356
2463
|
|
|
@@ -2566,6 +2673,21 @@ class OptimizationVpcConfigTypeDef(TypedDict):
|
|
|
2566
2673
|
Subnets: Sequence[str]
|
|
2567
2674
|
|
|
2568
2675
|
|
|
2676
|
+
class CreatePartnerAppPresignedUrlRequestRequestTypeDef(TypedDict):
|
|
2677
|
+
Arn: str
|
|
2678
|
+
ExpiresInSeconds: NotRequired[int]
|
|
2679
|
+
SessionExpirationDurationInSeconds: NotRequired[int]
|
|
2680
|
+
|
|
2681
|
+
|
|
2682
|
+
class PartnerAppConfigTypeDef(TypedDict):
|
|
2683
|
+
AdminUsers: NotRequired[Sequence[str]]
|
|
2684
|
+
Arguments: NotRequired[Mapping[str, str]]
|
|
2685
|
+
|
|
2686
|
+
|
|
2687
|
+
class PartnerAppMaintenanceConfigTypeDef(TypedDict):
|
|
2688
|
+
MaintenanceWindowStart: NotRequired[str]
|
|
2689
|
+
|
|
2690
|
+
|
|
2569
2691
|
class ParallelismConfigurationTypeDef(TypedDict):
|
|
2570
2692
|
MaxParallelExecutionSteps: int
|
|
2571
2693
|
|
|
@@ -2723,10 +2845,19 @@ class EFSFileSystemConfigTypeDef(TypedDict):
|
|
|
2723
2845
|
FileSystemPath: NotRequired[str]
|
|
2724
2846
|
|
|
2725
2847
|
|
|
2848
|
+
class FSxLustreFileSystemConfigTypeDef(TypedDict):
|
|
2849
|
+
FileSystemId: str
|
|
2850
|
+
FileSystemPath: NotRequired[str]
|
|
2851
|
+
|
|
2852
|
+
|
|
2726
2853
|
class EFSFileSystemTypeDef(TypedDict):
|
|
2727
2854
|
FileSystemId: str
|
|
2728
2855
|
|
|
2729
2856
|
|
|
2857
|
+
class FSxLustreFileSystemTypeDef(TypedDict):
|
|
2858
|
+
FileSystemId: str
|
|
2859
|
+
|
|
2860
|
+
|
|
2730
2861
|
class CustomPosixUserConfigTypeDef(TypedDict):
|
|
2731
2862
|
Uid: int
|
|
2732
2863
|
Gid: int
|
|
@@ -2880,6 +3011,10 @@ class DeleteClusterRequestRequestTypeDef(TypedDict):
|
|
|
2880
3011
|
ClusterName: str
|
|
2881
3012
|
|
|
2882
3013
|
|
|
3014
|
+
class DeleteClusterSchedulerConfigRequestRequestTypeDef(TypedDict):
|
|
3015
|
+
ClusterSchedulerConfigId: str
|
|
3016
|
+
|
|
3017
|
+
|
|
2883
3018
|
class DeleteCodeRepositoryInputRequestTypeDef(TypedDict):
|
|
2884
3019
|
CodeRepositoryName: str
|
|
2885
3020
|
|
|
@@ -2888,6 +3023,10 @@ class DeleteCompilationJobRequestRequestTypeDef(TypedDict):
|
|
|
2888
3023
|
CompilationJobName: str
|
|
2889
3024
|
|
|
2890
3025
|
|
|
3026
|
+
class DeleteComputeQuotaRequestRequestTypeDef(TypedDict):
|
|
3027
|
+
ComputeQuotaId: str
|
|
3028
|
+
|
|
3029
|
+
|
|
2891
3030
|
class DeleteContextRequestRequestTypeDef(TypedDict):
|
|
2892
3031
|
ContextName: str
|
|
2893
3032
|
|
|
@@ -3028,6 +3167,11 @@ class DeleteOptimizationJobRequestRequestTypeDef(TypedDict):
|
|
|
3028
3167
|
OptimizationJobName: str
|
|
3029
3168
|
|
|
3030
3169
|
|
|
3170
|
+
class DeletePartnerAppRequestRequestTypeDef(TypedDict):
|
|
3171
|
+
Arn: str
|
|
3172
|
+
ClientToken: NotRequired[str]
|
|
3173
|
+
|
|
3174
|
+
|
|
3031
3175
|
class DeletePipelineRequestRequestTypeDef(TypedDict):
|
|
3032
3176
|
PipelineName: str
|
|
3033
3177
|
ClientRequestToken: str
|
|
@@ -3158,6 +3302,11 @@ class DescribeClusterRequestRequestTypeDef(TypedDict):
|
|
|
3158
3302
|
ClusterName: str
|
|
3159
3303
|
|
|
3160
3304
|
|
|
3305
|
+
class DescribeClusterSchedulerConfigRequestRequestTypeDef(TypedDict):
|
|
3306
|
+
ClusterSchedulerConfigId: str
|
|
3307
|
+
ClusterSchedulerConfigVersion: NotRequired[int]
|
|
3308
|
+
|
|
3309
|
+
|
|
3161
3310
|
class DescribeCodeRepositoryInputRequestTypeDef(TypedDict):
|
|
3162
3311
|
CodeRepositoryName: str
|
|
3163
3312
|
|
|
@@ -3179,6 +3328,11 @@ class NeoVpcConfigOutputTypeDef(TypedDict):
|
|
|
3179
3328
|
Subnets: List[str]
|
|
3180
3329
|
|
|
3181
3330
|
|
|
3331
|
+
class DescribeComputeQuotaRequestRequestTypeDef(TypedDict):
|
|
3332
|
+
ComputeQuotaId: str
|
|
3333
|
+
ComputeQuotaVersion: NotRequired[int]
|
|
3334
|
+
|
|
3335
|
+
|
|
3182
3336
|
class DescribeContextRequestRequestTypeDef(TypedDict):
|
|
3183
3337
|
ContextName: str
|
|
3184
3338
|
|
|
@@ -3499,6 +3653,20 @@ class OptimizationVpcConfigOutputTypeDef(TypedDict):
|
|
|
3499
3653
|
Subnets: List[str]
|
|
3500
3654
|
|
|
3501
3655
|
|
|
3656
|
+
class DescribePartnerAppRequestRequestTypeDef(TypedDict):
|
|
3657
|
+
Arn: str
|
|
3658
|
+
|
|
3659
|
+
|
|
3660
|
+
class ErrorInfoTypeDef(TypedDict):
|
|
3661
|
+
Code: NotRequired[str]
|
|
3662
|
+
Reason: NotRequired[str]
|
|
3663
|
+
|
|
3664
|
+
|
|
3665
|
+
class PartnerAppConfigOutputTypeDef(TypedDict):
|
|
3666
|
+
AdminUsers: NotRequired[List[str]]
|
|
3667
|
+
Arguments: NotRequired[Dict[str, str]]
|
|
3668
|
+
|
|
3669
|
+
|
|
3502
3670
|
class DescribePipelineDefinitionForExecutionRequestRequestTypeDef(TypedDict):
|
|
3503
3671
|
PipelineExecutionArn: str
|
|
3504
3672
|
|
|
@@ -3598,6 +3766,22 @@ class WarmPoolStatusTypeDef(TypedDict):
|
|
|
3598
3766
|
ReusedByJob: NotRequired[str]
|
|
3599
3767
|
|
|
3600
3768
|
|
|
3769
|
+
class DescribeTrainingPlanRequestRequestTypeDef(TypedDict):
|
|
3770
|
+
TrainingPlanName: str
|
|
3771
|
+
|
|
3772
|
+
|
|
3773
|
+
class ReservedCapacitySummaryTypeDef(TypedDict):
|
|
3774
|
+
ReservedCapacityArn: str
|
|
3775
|
+
InstanceType: ReservedCapacityInstanceTypeType
|
|
3776
|
+
TotalInstanceCount: int
|
|
3777
|
+
Status: ReservedCapacityStatusType
|
|
3778
|
+
AvailabilityZone: NotRequired[str]
|
|
3779
|
+
DurationHours: NotRequired[int]
|
|
3780
|
+
DurationMinutes: NotRequired[int]
|
|
3781
|
+
StartTime: NotRequired[datetime]
|
|
3782
|
+
EndTime: NotRequired[datetime]
|
|
3783
|
+
|
|
3784
|
+
|
|
3601
3785
|
class DescribeTransformJobRequestRequestTypeDef(TypedDict):
|
|
3602
3786
|
TransformJobName: str
|
|
3603
3787
|
|
|
@@ -4298,6 +4482,23 @@ class OptimizationJobSummaryTypeDef(TypedDict):
|
|
|
4298
4482
|
LastModifiedTime: NotRequired[datetime]
|
|
4299
4483
|
|
|
4300
4484
|
|
|
4485
|
+
class ListPartnerAppsRequestRequestTypeDef(TypedDict):
|
|
4486
|
+
MaxResults: NotRequired[int]
|
|
4487
|
+
NextToken: NotRequired[str]
|
|
4488
|
+
|
|
4489
|
+
|
|
4490
|
+
PartnerAppSummaryTypeDef = TypedDict(
|
|
4491
|
+
"PartnerAppSummaryTypeDef",
|
|
4492
|
+
{
|
|
4493
|
+
"Arn": NotRequired[str],
|
|
4494
|
+
"Name": NotRequired[str],
|
|
4495
|
+
"Type": NotRequired[PartnerAppTypeType],
|
|
4496
|
+
"Status": NotRequired[PartnerAppStatusType],
|
|
4497
|
+
"CreationTime": NotRequired[datetime],
|
|
4498
|
+
},
|
|
4499
|
+
)
|
|
4500
|
+
|
|
4501
|
+
|
|
4301
4502
|
class ListPipelineExecutionStepsRequestRequestTypeDef(TypedDict):
|
|
4302
4503
|
PipelineExecutionArn: NotRequired[str]
|
|
4303
4504
|
NextToken: NotRequired[str]
|
|
@@ -4409,6 +4610,11 @@ class ListTrainingJobsForHyperParameterTuningJobRequestRequestTypeDef(TypedDict)
|
|
|
4409
4610
|
SortOrder: NotRequired[SortOrderType]
|
|
4410
4611
|
|
|
4411
4612
|
|
|
4613
|
+
class TrainingPlanFilterTypeDef(TypedDict):
|
|
4614
|
+
Name: Literal["Status"]
|
|
4615
|
+
Value: str
|
|
4616
|
+
|
|
4617
|
+
|
|
4412
4618
|
class TransformJobSummaryTypeDef(TypedDict):
|
|
4413
4619
|
TransformJobName: str
|
|
4414
4620
|
TransformJobArn: str
|
|
@@ -4691,6 +4897,11 @@ class SelectiveExecutionResultTypeDef(TypedDict):
|
|
|
4691
4897
|
SourcePipelineExecutionArn: NotRequired[str]
|
|
4692
4898
|
|
|
4693
4899
|
|
|
4900
|
+
class PriorityClassTypeDef(TypedDict):
|
|
4901
|
+
Name: str
|
|
4902
|
+
Weight: int
|
|
4903
|
+
|
|
4904
|
+
|
|
4694
4905
|
class ProcessingClusterConfigTypeDef(TypedDict):
|
|
4695
4906
|
InstanceCount: int
|
|
4696
4907
|
InstanceType: ProcessingInstanceTypeType
|
|
@@ -4820,6 +5031,16 @@ class RenderingErrorTypeDef(TypedDict):
|
|
|
4820
5031
|
Message: str
|
|
4821
5032
|
|
|
4822
5033
|
|
|
5034
|
+
class ReservedCapacityOfferingTypeDef(TypedDict):
|
|
5035
|
+
InstanceType: ReservedCapacityInstanceTypeType
|
|
5036
|
+
InstanceCount: int
|
|
5037
|
+
AvailabilityZone: NotRequired[str]
|
|
5038
|
+
DurationHours: NotRequired[int]
|
|
5039
|
+
DurationMinutes: NotRequired[int]
|
|
5040
|
+
StartTime: NotRequired[datetime]
|
|
5041
|
+
EndTime: NotRequired[datetime]
|
|
5042
|
+
|
|
5043
|
+
|
|
4823
5044
|
class ResourceConfigForUpdateTypeDef(TypedDict):
|
|
4824
5045
|
KeepAlivePeriodInSeconds: int
|
|
4825
5046
|
|
|
@@ -5163,6 +5384,12 @@ class CreateClusterResponseTypeDef(TypedDict):
|
|
|
5163
5384
|
ResponseMetadata: ResponseMetadataTypeDef
|
|
5164
5385
|
|
|
5165
5386
|
|
|
5387
|
+
class CreateClusterSchedulerConfigResponseTypeDef(TypedDict):
|
|
5388
|
+
ClusterSchedulerConfigArn: str
|
|
5389
|
+
ClusterSchedulerConfigId: str
|
|
5390
|
+
ResponseMetadata: ResponseMetadataTypeDef
|
|
5391
|
+
|
|
5392
|
+
|
|
5166
5393
|
class CreateCodeRepositoryOutputTypeDef(TypedDict):
|
|
5167
5394
|
CodeRepositoryArn: str
|
|
5168
5395
|
ResponseMetadata: ResponseMetadataTypeDef
|
|
@@ -5173,6 +5400,12 @@ class CreateCompilationJobResponseTypeDef(TypedDict):
|
|
|
5173
5400
|
ResponseMetadata: ResponseMetadataTypeDef
|
|
5174
5401
|
|
|
5175
5402
|
|
|
5403
|
+
class CreateComputeQuotaResponseTypeDef(TypedDict):
|
|
5404
|
+
ComputeQuotaArn: str
|
|
5405
|
+
ComputeQuotaId: str
|
|
5406
|
+
ResponseMetadata: ResponseMetadataTypeDef
|
|
5407
|
+
|
|
5408
|
+
|
|
5176
5409
|
class CreateContextResponseTypeDef(TypedDict):
|
|
5177
5410
|
ContextArn: str
|
|
5178
5411
|
ResponseMetadata: ResponseMetadataTypeDef
|
|
@@ -5335,6 +5568,16 @@ class CreateOptimizationJobResponseTypeDef(TypedDict):
|
|
|
5335
5568
|
ResponseMetadata: ResponseMetadataTypeDef
|
|
5336
5569
|
|
|
5337
5570
|
|
|
5571
|
+
class CreatePartnerAppPresignedUrlResponseTypeDef(TypedDict):
|
|
5572
|
+
Url: str
|
|
5573
|
+
ResponseMetadata: ResponseMetadataTypeDef
|
|
5574
|
+
|
|
5575
|
+
|
|
5576
|
+
class CreatePartnerAppResponseTypeDef(TypedDict):
|
|
5577
|
+
Arn: str
|
|
5578
|
+
ResponseMetadata: ResponseMetadataTypeDef
|
|
5579
|
+
|
|
5580
|
+
|
|
5338
5581
|
class CreatePipelineResponseTypeDef(TypedDict):
|
|
5339
5582
|
PipelineArn: str
|
|
5340
5583
|
ResponseMetadata: ResponseMetadataTypeDef
|
|
@@ -5381,6 +5624,11 @@ class CreateTrainingJobResponseTypeDef(TypedDict):
|
|
|
5381
5624
|
ResponseMetadata: ResponseMetadataTypeDef
|
|
5382
5625
|
|
|
5383
5626
|
|
|
5627
|
+
class CreateTrainingPlanResponseTypeDef(TypedDict):
|
|
5628
|
+
TrainingPlanArn: str
|
|
5629
|
+
ResponseMetadata: ResponseMetadataTypeDef
|
|
5630
|
+
|
|
5631
|
+
|
|
5384
5632
|
class CreateTransformJobResponseTypeDef(TypedDict):
|
|
5385
5633
|
TransformJobArn: str
|
|
5386
5634
|
ResponseMetadata: ResponseMetadataTypeDef
|
|
@@ -5452,6 +5700,11 @@ class DeleteMlflowTrackingServerResponseTypeDef(TypedDict):
|
|
|
5452
5700
|
ResponseMetadata: ResponseMetadataTypeDef
|
|
5453
5701
|
|
|
5454
5702
|
|
|
5703
|
+
class DeletePartnerAppResponseTypeDef(TypedDict):
|
|
5704
|
+
Arn: str
|
|
5705
|
+
ResponseMetadata: ResponseMetadataTypeDef
|
|
5706
|
+
|
|
5707
|
+
|
|
5455
5708
|
class DeletePipelineResponseTypeDef(TypedDict):
|
|
5456
5709
|
PipelineArn: str
|
|
5457
5710
|
ResponseMetadata: ResponseMetadataTypeDef
|
|
@@ -5629,6 +5882,12 @@ class UpdateClusterResponseTypeDef(TypedDict):
|
|
|
5629
5882
|
ResponseMetadata: ResponseMetadataTypeDef
|
|
5630
5883
|
|
|
5631
5884
|
|
|
5885
|
+
class UpdateClusterSchedulerConfigResponseTypeDef(TypedDict):
|
|
5886
|
+
ClusterSchedulerConfigArn: str
|
|
5887
|
+
ClusterSchedulerConfigVersion: int
|
|
5888
|
+
ResponseMetadata: ResponseMetadataTypeDef
|
|
5889
|
+
|
|
5890
|
+
|
|
5632
5891
|
class UpdateClusterSoftwareResponseTypeDef(TypedDict):
|
|
5633
5892
|
ClusterArn: str
|
|
5634
5893
|
ResponseMetadata: ResponseMetadataTypeDef
|
|
@@ -5639,6 +5898,12 @@ class UpdateCodeRepositoryOutputTypeDef(TypedDict):
|
|
|
5639
5898
|
ResponseMetadata: ResponseMetadataTypeDef
|
|
5640
5899
|
|
|
5641
5900
|
|
|
5901
|
+
class UpdateComputeQuotaResponseTypeDef(TypedDict):
|
|
5902
|
+
ComputeQuotaArn: str
|
|
5903
|
+
ComputeQuotaVersion: int
|
|
5904
|
+
ResponseMetadata: ResponseMetadataTypeDef
|
|
5905
|
+
|
|
5906
|
+
|
|
5642
5907
|
class UpdateContextResponseTypeDef(TypedDict):
|
|
5643
5908
|
ContextArn: str
|
|
5644
5909
|
ResponseMetadata: ResponseMetadataTypeDef
|
|
@@ -5725,6 +5990,11 @@ class UpdateMonitoringScheduleResponseTypeDef(TypedDict):
|
|
|
5725
5990
|
ResponseMetadata: ResponseMetadataTypeDef
|
|
5726
5991
|
|
|
5727
5992
|
|
|
5993
|
+
class UpdatePartnerAppResponseTypeDef(TypedDict):
|
|
5994
|
+
Arn: str
|
|
5995
|
+
ResponseMetadata: ResponseMetadataTypeDef
|
|
5996
|
+
|
|
5997
|
+
|
|
5728
5998
|
class UpdatePipelineExecutionResponseTypeDef(TypedDict):
|
|
5729
5999
|
PipelineExecutionArn: str
|
|
5730
6000
|
ResponseMetadata: ResponseMetadataTypeDef
|
|
@@ -5822,6 +6092,12 @@ class CreateStudioLifecycleConfigRequestRequestTypeDef(TypedDict):
|
|
|
5822
6092
|
Tags: NotRequired[Sequence[TagTypeDef]]
|
|
5823
6093
|
|
|
5824
6094
|
|
|
6095
|
+
class CreateTrainingPlanRequestRequestTypeDef(TypedDict):
|
|
6096
|
+
TrainingPlanName: str
|
|
6097
|
+
TrainingPlanOfferingId: str
|
|
6098
|
+
Tags: NotRequired[Sequence[TagTypeDef]]
|
|
6099
|
+
|
|
6100
|
+
|
|
5825
6101
|
class ImportHubContentRequestRequestTypeDef(TypedDict):
|
|
5826
6102
|
HubContentName: str
|
|
5827
6103
|
HubContentType: HubContentTypeType
|
|
@@ -6199,6 +6475,12 @@ class ClusterOrchestratorTypeDef(TypedDict):
|
|
|
6199
6475
|
Eks: ClusterOrchestratorEksConfigTypeDef
|
|
6200
6476
|
|
|
6201
6477
|
|
|
6478
|
+
class ListClusterSchedulerConfigsResponseTypeDef(TypedDict):
|
|
6479
|
+
ClusterSchedulerConfigSummaries: List[ClusterSchedulerConfigSummaryTypeDef]
|
|
6480
|
+
ResponseMetadata: ResponseMetadataTypeDef
|
|
6481
|
+
NextToken: NotRequired[str]
|
|
6482
|
+
|
|
6483
|
+
|
|
6202
6484
|
class ListClustersResponseTypeDef(TypedDict):
|
|
6203
6485
|
NextToken: str
|
|
6204
6486
|
ClusterSummaries: List[ClusterSummaryTypeDef]
|
|
@@ -6294,6 +6576,18 @@ class ListCompilationJobsResponseTypeDef(TypedDict):
|
|
|
6294
6576
|
NextToken: NotRequired[str]
|
|
6295
6577
|
|
|
6296
6578
|
|
|
6579
|
+
class ComputeQuotaConfigOutputTypeDef(TypedDict):
|
|
6580
|
+
ComputeQuotaResources: NotRequired[List[ComputeQuotaResourceConfigTypeDef]]
|
|
6581
|
+
ResourceSharingConfig: NotRequired[ResourceSharingConfigTypeDef]
|
|
6582
|
+
PreemptTeamTasks: NotRequired[PreemptTeamTasksType]
|
|
6583
|
+
|
|
6584
|
+
|
|
6585
|
+
class ComputeQuotaConfigTypeDef(TypedDict):
|
|
6586
|
+
ComputeQuotaResources: NotRequired[Sequence[ComputeQuotaResourceConfigTypeDef]]
|
|
6587
|
+
ResourceSharingConfig: NotRequired[ResourceSharingConfigTypeDef]
|
|
6588
|
+
PreemptTeamTasks: NotRequired[PreemptTeamTasksType]
|
|
6589
|
+
|
|
6590
|
+
|
|
6297
6591
|
ContainerConfigUnionTypeDef = Union[ContainerConfigTypeDef, ContainerConfigOutputTypeDef]
|
|
6298
6592
|
|
|
6299
6593
|
|
|
@@ -6516,6 +6810,33 @@ class UpdateNotebookInstanceLifecycleConfigInputRequestTypeDef(TypedDict):
|
|
|
6516
6810
|
OnStart: NotRequired[Sequence[NotebookInstanceLifecycleHookTypeDef]]
|
|
6517
6811
|
|
|
6518
6812
|
|
|
6813
|
+
CreatePartnerAppRequestRequestTypeDef = TypedDict(
|
|
6814
|
+
"CreatePartnerAppRequestRequestTypeDef",
|
|
6815
|
+
{
|
|
6816
|
+
"Name": str,
|
|
6817
|
+
"Type": PartnerAppTypeType,
|
|
6818
|
+
"ExecutionRoleArn": str,
|
|
6819
|
+
"Tier": str,
|
|
6820
|
+
"AuthType": Literal["IAM"],
|
|
6821
|
+
"MaintenanceConfig": NotRequired[PartnerAppMaintenanceConfigTypeDef],
|
|
6822
|
+
"ApplicationConfig": NotRequired[PartnerAppConfigTypeDef],
|
|
6823
|
+
"EnableIamSessionBasedIdentity": NotRequired[bool],
|
|
6824
|
+
"ClientToken": NotRequired[str],
|
|
6825
|
+
"Tags": NotRequired[Sequence[TagTypeDef]],
|
|
6826
|
+
},
|
|
6827
|
+
)
|
|
6828
|
+
|
|
6829
|
+
|
|
6830
|
+
class UpdatePartnerAppRequestRequestTypeDef(TypedDict):
|
|
6831
|
+
Arn: str
|
|
6832
|
+
MaintenanceConfig: NotRequired[PartnerAppMaintenanceConfigTypeDef]
|
|
6833
|
+
Tier: NotRequired[str]
|
|
6834
|
+
ApplicationConfig: NotRequired[PartnerAppConfigTypeDef]
|
|
6835
|
+
EnableIamSessionBasedIdentity: NotRequired[bool]
|
|
6836
|
+
ClientToken: NotRequired[str]
|
|
6837
|
+
Tags: NotRequired[Sequence[TagTypeDef]]
|
|
6838
|
+
|
|
6839
|
+
|
|
6519
6840
|
class RetryPipelineExecutionRequestRequestTypeDef(TypedDict):
|
|
6520
6841
|
PipelineExecutionArn: str
|
|
6521
6842
|
ClientRequestToken: str
|
|
@@ -6638,6 +6959,18 @@ class ListClusterNodesRequestRequestTypeDef(TypedDict):
|
|
|
6638
6959
|
SortOrder: NotRequired[SortOrderType]
|
|
6639
6960
|
|
|
6640
6961
|
|
|
6962
|
+
class ListClusterSchedulerConfigsRequestRequestTypeDef(TypedDict):
|
|
6963
|
+
CreatedAfter: NotRequired[TimestampTypeDef]
|
|
6964
|
+
CreatedBefore: NotRequired[TimestampTypeDef]
|
|
6965
|
+
NameContains: NotRequired[str]
|
|
6966
|
+
ClusterArn: NotRequired[str]
|
|
6967
|
+
Status: NotRequired[SchedulerResourceStatusType]
|
|
6968
|
+
SortBy: NotRequired[SortClusterSchedulerConfigByType]
|
|
6969
|
+
SortOrder: NotRequired[SortOrderType]
|
|
6970
|
+
NextToken: NotRequired[str]
|
|
6971
|
+
MaxResults: NotRequired[int]
|
|
6972
|
+
|
|
6973
|
+
|
|
6641
6974
|
class ListClustersRequestRequestTypeDef(TypedDict):
|
|
6642
6975
|
CreationTimeAfter: NotRequired[TimestampTypeDef]
|
|
6643
6976
|
CreationTimeBefore: NotRequired[TimestampTypeDef]
|
|
@@ -6646,6 +6979,7 @@ class ListClustersRequestRequestTypeDef(TypedDict):
|
|
|
6646
6979
|
NextToken: NotRequired[str]
|
|
6647
6980
|
SortBy: NotRequired[ClusterSortByType]
|
|
6648
6981
|
SortOrder: NotRequired[SortOrderType]
|
|
6982
|
+
TrainingPlanArn: NotRequired[str]
|
|
6649
6983
|
|
|
6650
6984
|
|
|
6651
6985
|
class ListCodeRepositoriesInputRequestTypeDef(TypedDict):
|
|
@@ -6673,6 +7007,18 @@ class ListCompilationJobsRequestRequestTypeDef(TypedDict):
|
|
|
6673
7007
|
SortOrder: NotRequired[SortOrderType]
|
|
6674
7008
|
|
|
6675
7009
|
|
|
7010
|
+
class ListComputeQuotasRequestRequestTypeDef(TypedDict):
|
|
7011
|
+
CreatedAfter: NotRequired[TimestampTypeDef]
|
|
7012
|
+
CreatedBefore: NotRequired[TimestampTypeDef]
|
|
7013
|
+
NameContains: NotRequired[str]
|
|
7014
|
+
Status: NotRequired[SchedulerResourceStatusType]
|
|
7015
|
+
ClusterArn: NotRequired[str]
|
|
7016
|
+
SortBy: NotRequired[SortQuotaByType]
|
|
7017
|
+
SortOrder: NotRequired[SortOrderType]
|
|
7018
|
+
NextToken: NotRequired[str]
|
|
7019
|
+
MaxResults: NotRequired[int]
|
|
7020
|
+
|
|
7021
|
+
|
|
6676
7022
|
class ListContextsRequestRequestTypeDef(TypedDict):
|
|
6677
7023
|
SourceUri: NotRequired[str]
|
|
6678
7024
|
ContextType: NotRequired[str]
|
|
@@ -7238,6 +7584,7 @@ class ListTrainingJobsRequestRequestTypeDef(TypedDict):
|
|
|
7238
7584
|
SortBy: NotRequired[SortByType]
|
|
7239
7585
|
SortOrder: NotRequired[SortOrderType]
|
|
7240
7586
|
WarmPoolStatusEquals: NotRequired[WarmPoolResourceStatusType]
|
|
7587
|
+
TrainingPlanArnEquals: NotRequired[str]
|
|
7241
7588
|
|
|
7242
7589
|
|
|
7243
7590
|
class ListTransformJobsRequestRequestTypeDef(TypedDict):
|
|
@@ -7286,6 +7633,15 @@ class QueryFiltersTypeDef(TypedDict):
|
|
|
7286
7633
|
Properties: NotRequired[Mapping[str, str]]
|
|
7287
7634
|
|
|
7288
7635
|
|
|
7636
|
+
class SearchTrainingPlanOfferingsRequestRequestTypeDef(TypedDict):
|
|
7637
|
+
InstanceType: ReservedCapacityInstanceTypeType
|
|
7638
|
+
InstanceCount: int
|
|
7639
|
+
TargetResources: Sequence[SageMakerResourceNameType]
|
|
7640
|
+
StartTimeAfter: NotRequired[TimestampTypeDef]
|
|
7641
|
+
EndTimeBefore: NotRequired[TimestampTypeDef]
|
|
7642
|
+
DurationHours: NotRequired[int]
|
|
7643
|
+
|
|
7644
|
+
|
|
7289
7645
|
class CreateTrialComponentRequestRequestTypeDef(TypedDict):
|
|
7290
7646
|
TrialComponentName: str
|
|
7291
7647
|
DisplayName: NotRequired[str]
|
|
@@ -7331,10 +7687,12 @@ class UpdateWorkforceRequestRequestTypeDef(TypedDict):
|
|
|
7331
7687
|
|
|
7332
7688
|
class CustomFileSystemConfigTypeDef(TypedDict):
|
|
7333
7689
|
EFSFileSystemConfig: NotRequired[EFSFileSystemConfigTypeDef]
|
|
7690
|
+
FSxLustreFileSystemConfig: NotRequired[FSxLustreFileSystemConfigTypeDef]
|
|
7334
7691
|
|
|
7335
7692
|
|
|
7336
7693
|
class CustomFileSystemTypeDef(TypedDict):
|
|
7337
7694
|
EFSFileSystem: NotRequired[EFSFileSystemTypeDef]
|
|
7695
|
+
FSxLustreFileSystem: NotRequired[FSxLustreFileSystemTypeDef]
|
|
7338
7696
|
|
|
7339
7697
|
|
|
7340
7698
|
class ModelBiasBaselineConfigTypeDef(TypedDict):
|
|
@@ -7629,6 +7987,28 @@ class ListMonitoringExecutionsResponseTypeDef(TypedDict):
|
|
|
7629
7987
|
NextToken: NotRequired[str]
|
|
7630
7988
|
|
|
7631
7989
|
|
|
7990
|
+
DescribePartnerAppResponseTypeDef = TypedDict(
|
|
7991
|
+
"DescribePartnerAppResponseTypeDef",
|
|
7992
|
+
{
|
|
7993
|
+
"Arn": str,
|
|
7994
|
+
"Name": str,
|
|
7995
|
+
"Type": PartnerAppTypeType,
|
|
7996
|
+
"Status": PartnerAppStatusType,
|
|
7997
|
+
"CreationTime": datetime,
|
|
7998
|
+
"ExecutionRoleArn": str,
|
|
7999
|
+
"BaseUrl": str,
|
|
8000
|
+
"MaintenanceConfig": PartnerAppMaintenanceConfigTypeDef,
|
|
8001
|
+
"Tier": str,
|
|
8002
|
+
"Version": str,
|
|
8003
|
+
"ApplicationConfig": PartnerAppConfigOutputTypeDef,
|
|
8004
|
+
"AuthType": Literal["IAM"],
|
|
8005
|
+
"EnableIamSessionBasedIdentity": bool,
|
|
8006
|
+
"Error": ErrorInfoTypeDef,
|
|
8007
|
+
"ResponseMetadata": ResponseMetadataTypeDef,
|
|
8008
|
+
},
|
|
8009
|
+
)
|
|
8010
|
+
|
|
8011
|
+
|
|
7632
8012
|
class DescribeSubscribedWorkteamResponseTypeDef(TypedDict):
|
|
7633
8013
|
SubscribedWorkteam: SubscribedWorkteamTypeDef
|
|
7634
8014
|
ResponseMetadata: ResponseMetadataTypeDef
|
|
@@ -7649,6 +8029,44 @@ class TrainingJobSummaryTypeDef(TypedDict):
|
|
|
7649
8029
|
LastModifiedTime: NotRequired[datetime]
|
|
7650
8030
|
SecondaryStatus: NotRequired[SecondaryStatusType]
|
|
7651
8031
|
WarmPoolStatus: NotRequired[WarmPoolStatusTypeDef]
|
|
8032
|
+
TrainingPlanArn: NotRequired[str]
|
|
8033
|
+
|
|
8034
|
+
|
|
8035
|
+
class DescribeTrainingPlanResponseTypeDef(TypedDict):
|
|
8036
|
+
TrainingPlanArn: str
|
|
8037
|
+
TrainingPlanName: str
|
|
8038
|
+
Status: TrainingPlanStatusType
|
|
8039
|
+
StatusMessage: str
|
|
8040
|
+
DurationHours: int
|
|
8041
|
+
DurationMinutes: int
|
|
8042
|
+
StartTime: datetime
|
|
8043
|
+
EndTime: datetime
|
|
8044
|
+
UpfrontFee: str
|
|
8045
|
+
CurrencyCode: str
|
|
8046
|
+
TotalInstanceCount: int
|
|
8047
|
+
AvailableInstanceCount: int
|
|
8048
|
+
InUseInstanceCount: int
|
|
8049
|
+
TargetResources: List[SageMakerResourceNameType]
|
|
8050
|
+
ReservedCapacitySummaries: List[ReservedCapacitySummaryTypeDef]
|
|
8051
|
+
ResponseMetadata: ResponseMetadataTypeDef
|
|
8052
|
+
|
|
8053
|
+
|
|
8054
|
+
class TrainingPlanSummaryTypeDef(TypedDict):
|
|
8055
|
+
TrainingPlanArn: str
|
|
8056
|
+
TrainingPlanName: str
|
|
8057
|
+
Status: TrainingPlanStatusType
|
|
8058
|
+
StatusMessage: NotRequired[str]
|
|
8059
|
+
DurationHours: NotRequired[int]
|
|
8060
|
+
DurationMinutes: NotRequired[int]
|
|
8061
|
+
StartTime: NotRequired[datetime]
|
|
8062
|
+
EndTime: NotRequired[datetime]
|
|
8063
|
+
UpfrontFee: NotRequired[str]
|
|
8064
|
+
CurrencyCode: NotRequired[str]
|
|
8065
|
+
TotalInstanceCount: NotRequired[int]
|
|
8066
|
+
AvailableInstanceCount: NotRequired[int]
|
|
8067
|
+
InUseInstanceCount: NotRequired[int]
|
|
8068
|
+
TargetResources: NotRequired[List[SageMakerResourceNameType]]
|
|
8069
|
+
ReservedCapacitySummaries: NotRequired[List[ReservedCapacitySummaryTypeDef]]
|
|
7652
8070
|
|
|
7653
8071
|
|
|
7654
8072
|
class TrialSummaryTypeDef(TypedDict):
|
|
@@ -7981,6 +8399,7 @@ class ResourceConfigOutputTypeDef(TypedDict):
|
|
|
7981
8399
|
VolumeKmsKeyId: NotRequired[str]
|
|
7982
8400
|
KeepAlivePeriodInSeconds: NotRequired[int]
|
|
7983
8401
|
InstanceGroups: NotRequired[List[InstanceGroupTypeDef]]
|
|
8402
|
+
TrainingPlanArn: NotRequired[str]
|
|
7984
8403
|
|
|
7985
8404
|
|
|
7986
8405
|
class ResourceConfigTypeDef(TypedDict):
|
|
@@ -7990,6 +8409,7 @@ class ResourceConfigTypeDef(TypedDict):
|
|
|
7990
8409
|
VolumeKmsKeyId: NotRequired[str]
|
|
7991
8410
|
KeepAlivePeriodInSeconds: NotRequired[int]
|
|
7992
8411
|
InstanceGroups: NotRequired[Sequence[InstanceGroupTypeDef]]
|
|
8412
|
+
TrainingPlanArn: NotRequired[str]
|
|
7993
8413
|
|
|
7994
8414
|
|
|
7995
8415
|
class ParameterRangeOutputTypeDef(TypedDict):
|
|
@@ -8142,12 +8562,24 @@ class ListClusterNodesRequestListClusterNodesPaginateTypeDef(TypedDict):
|
|
|
8142
8562
|
PaginationConfig: NotRequired[PaginatorConfigTypeDef]
|
|
8143
8563
|
|
|
8144
8564
|
|
|
8565
|
+
class ListClusterSchedulerConfigsRequestListClusterSchedulerConfigsPaginateTypeDef(TypedDict):
|
|
8566
|
+
CreatedAfter: NotRequired[TimestampTypeDef]
|
|
8567
|
+
CreatedBefore: NotRequired[TimestampTypeDef]
|
|
8568
|
+
NameContains: NotRequired[str]
|
|
8569
|
+
ClusterArn: NotRequired[str]
|
|
8570
|
+
Status: NotRequired[SchedulerResourceStatusType]
|
|
8571
|
+
SortBy: NotRequired[SortClusterSchedulerConfigByType]
|
|
8572
|
+
SortOrder: NotRequired[SortOrderType]
|
|
8573
|
+
PaginationConfig: NotRequired[PaginatorConfigTypeDef]
|
|
8574
|
+
|
|
8575
|
+
|
|
8145
8576
|
class ListClustersRequestListClustersPaginateTypeDef(TypedDict):
|
|
8146
8577
|
CreationTimeAfter: NotRequired[TimestampTypeDef]
|
|
8147
8578
|
CreationTimeBefore: NotRequired[TimestampTypeDef]
|
|
8148
8579
|
NameContains: NotRequired[str]
|
|
8149
8580
|
SortBy: NotRequired[ClusterSortByType]
|
|
8150
8581
|
SortOrder: NotRequired[SortOrderType]
|
|
8582
|
+
TrainingPlanArn: NotRequired[str]
|
|
8151
8583
|
PaginationConfig: NotRequired[PaginatorConfigTypeDef]
|
|
8152
8584
|
|
|
8153
8585
|
|
|
@@ -8174,6 +8606,17 @@ class ListCompilationJobsRequestListCompilationJobsPaginateTypeDef(TypedDict):
|
|
|
8174
8606
|
PaginationConfig: NotRequired[PaginatorConfigTypeDef]
|
|
8175
8607
|
|
|
8176
8608
|
|
|
8609
|
+
class ListComputeQuotasRequestListComputeQuotasPaginateTypeDef(TypedDict):
|
|
8610
|
+
CreatedAfter: NotRequired[TimestampTypeDef]
|
|
8611
|
+
CreatedBefore: NotRequired[TimestampTypeDef]
|
|
8612
|
+
NameContains: NotRequired[str]
|
|
8613
|
+
Status: NotRequired[SchedulerResourceStatusType]
|
|
8614
|
+
ClusterArn: NotRequired[str]
|
|
8615
|
+
SortBy: NotRequired[SortQuotaByType]
|
|
8616
|
+
SortOrder: NotRequired[SortOrderType]
|
|
8617
|
+
PaginationConfig: NotRequired[PaginatorConfigTypeDef]
|
|
8618
|
+
|
|
8619
|
+
|
|
8177
8620
|
class ListContextsRequestListContextsPaginateTypeDef(TypedDict):
|
|
8178
8621
|
SourceUri: NotRequired[str]
|
|
8179
8622
|
ContextType: NotRequired[str]
|
|
@@ -8609,6 +9052,10 @@ class ListOptimizationJobsRequestListOptimizationJobsPaginateTypeDef(TypedDict):
|
|
|
8609
9052
|
PaginationConfig: NotRequired[PaginatorConfigTypeDef]
|
|
8610
9053
|
|
|
8611
9054
|
|
|
9055
|
+
class ListPartnerAppsRequestListPartnerAppsPaginateTypeDef(TypedDict):
|
|
9056
|
+
PaginationConfig: NotRequired[PaginatorConfigTypeDef]
|
|
9057
|
+
|
|
9058
|
+
|
|
8612
9059
|
class ListPipelineExecutionStepsRequestListPipelineExecutionStepsPaginateTypeDef(TypedDict):
|
|
8613
9060
|
PipelineExecutionArn: NotRequired[str]
|
|
8614
9061
|
SortOrder: NotRequired[SortOrderType]
|
|
@@ -8718,6 +9165,7 @@ class ListTrainingJobsRequestListTrainingJobsPaginateTypeDef(TypedDict):
|
|
|
8718
9165
|
SortBy: NotRequired[SortByType]
|
|
8719
9166
|
SortOrder: NotRequired[SortOrderType]
|
|
8720
9167
|
WarmPoolStatusEquals: NotRequired[WarmPoolResourceStatusType]
|
|
9168
|
+
TrainingPlanArnEquals: NotRequired[str]
|
|
8721
9169
|
PaginationConfig: NotRequired[PaginatorConfigTypeDef]
|
|
8722
9170
|
|
|
8723
9171
|
|
|
@@ -8878,6 +9326,12 @@ class ListOptimizationJobsResponseTypeDef(TypedDict):
|
|
|
8878
9326
|
NextToken: NotRequired[str]
|
|
8879
9327
|
|
|
8880
9328
|
|
|
9329
|
+
class ListPartnerAppsResponseTypeDef(TypedDict):
|
|
9330
|
+
Summaries: List[PartnerAppSummaryTypeDef]
|
|
9331
|
+
ResponseMetadata: ResponseMetadataTypeDef
|
|
9332
|
+
NextToken: NotRequired[str]
|
|
9333
|
+
|
|
9334
|
+
|
|
8881
9335
|
class ListPipelineExecutionsResponseTypeDef(TypedDict):
|
|
8882
9336
|
PipelineExecutionSummaries: List[PipelineExecutionSummaryTypeDef]
|
|
8883
9337
|
ResponseMetadata: ResponseMetadataTypeDef
|
|
@@ -8920,6 +9374,25 @@ class ListStudioLifecycleConfigsResponseTypeDef(TypedDict):
|
|
|
8920
9374
|
NextToken: NotRequired[str]
|
|
8921
9375
|
|
|
8922
9376
|
|
|
9377
|
+
class ListTrainingPlansRequestListTrainingPlansPaginateTypeDef(TypedDict):
|
|
9378
|
+
StartTimeAfter: NotRequired[TimestampTypeDef]
|
|
9379
|
+
StartTimeBefore: NotRequired[TimestampTypeDef]
|
|
9380
|
+
SortBy: NotRequired[TrainingPlanSortByType]
|
|
9381
|
+
SortOrder: NotRequired[TrainingPlanSortOrderType]
|
|
9382
|
+
Filters: NotRequired[Sequence[TrainingPlanFilterTypeDef]]
|
|
9383
|
+
PaginationConfig: NotRequired[PaginatorConfigTypeDef]
|
|
9384
|
+
|
|
9385
|
+
|
|
9386
|
+
class ListTrainingPlansRequestRequestTypeDef(TypedDict):
|
|
9387
|
+
NextToken: NotRequired[str]
|
|
9388
|
+
MaxResults: NotRequired[int]
|
|
9389
|
+
StartTimeAfter: NotRequired[TimestampTypeDef]
|
|
9390
|
+
StartTimeBefore: NotRequired[TimestampTypeDef]
|
|
9391
|
+
SortBy: NotRequired[TrainingPlanSortByType]
|
|
9392
|
+
SortOrder: NotRequired[TrainingPlanSortOrderType]
|
|
9393
|
+
Filters: NotRequired[Sequence[TrainingPlanFilterTypeDef]]
|
|
9394
|
+
|
|
9395
|
+
|
|
8923
9396
|
class ListTransformJobsResponseTypeDef(TypedDict):
|
|
8924
9397
|
TransformJobSummaries: List[TransformJobSummaryTypeDef]
|
|
8925
9398
|
ResponseMetadata: ResponseMetadataTypeDef
|
|
@@ -9105,6 +9578,16 @@ class ProductionVariantSummaryTypeDef(TypedDict):
|
|
|
9105
9578
|
RoutingConfig: NotRequired[ProductionVariantRoutingConfigTypeDef]
|
|
9106
9579
|
|
|
9107
9580
|
|
|
9581
|
+
class SchedulerConfigOutputTypeDef(TypedDict):
|
|
9582
|
+
PriorityClasses: NotRequired[List[PriorityClassTypeDef]]
|
|
9583
|
+
FairShare: NotRequired[FairShareType]
|
|
9584
|
+
|
|
9585
|
+
|
|
9586
|
+
class SchedulerConfigTypeDef(TypedDict):
|
|
9587
|
+
PriorityClasses: NotRequired[Sequence[PriorityClassTypeDef]]
|
|
9588
|
+
FairShare: NotRequired[FairShareType]
|
|
9589
|
+
|
|
9590
|
+
|
|
9108
9591
|
class ProcessingResourcesTypeDef(TypedDict):
|
|
9109
9592
|
ClusterConfig: ProcessingClusterConfigTypeDef
|
|
9110
9593
|
|
|
@@ -9212,6 +9695,18 @@ class RenderUiTemplateResponseTypeDef(TypedDict):
|
|
|
9212
9695
|
ResponseMetadata: ResponseMetadataTypeDef
|
|
9213
9696
|
|
|
9214
9697
|
|
|
9698
|
+
class TrainingPlanOfferingTypeDef(TypedDict):
|
|
9699
|
+
TrainingPlanOfferingId: str
|
|
9700
|
+
TargetResources: List[SageMakerResourceNameType]
|
|
9701
|
+
RequestedStartTimeAfter: NotRequired[datetime]
|
|
9702
|
+
RequestedEndTimeBefore: NotRequired[datetime]
|
|
9703
|
+
DurationHours: NotRequired[int]
|
|
9704
|
+
DurationMinutes: NotRequired[int]
|
|
9705
|
+
UpfrontFee: NotRequired[str]
|
|
9706
|
+
CurrencyCode: NotRequired[str]
|
|
9707
|
+
ReservedCapacityOfferings: NotRequired[List[ReservedCapacityOfferingTypeDef]]
|
|
9708
|
+
|
|
9709
|
+
|
|
9215
9710
|
class UpdateTrainingJobRequestRequestTypeDef(TypedDict):
|
|
9216
9711
|
TrainingJobName: str
|
|
9217
9712
|
ProfilerConfig: NotRequired[ProfilerConfigForUpdateTypeDef]
|
|
@@ -9564,6 +10059,9 @@ class ClusterInstanceGroupDetailsTypeDef(TypedDict):
|
|
|
9564
10059
|
ThreadsPerCore: NotRequired[int]
|
|
9565
10060
|
InstanceStorageConfigs: NotRequired[List[ClusterInstanceStorageConfigTypeDef]]
|
|
9566
10061
|
OnStartDeepHealthChecks: NotRequired[List[DeepHealthCheckTypeType]]
|
|
10062
|
+
Status: NotRequired[InstanceGroupStatusType]
|
|
10063
|
+
TrainingPlanArn: NotRequired[str]
|
|
10064
|
+
TrainingPlanStatus: NotRequired[str]
|
|
9567
10065
|
OverrideVpcConfig: NotRequired[VpcConfigOutputTypeDef]
|
|
9568
10066
|
|
|
9569
10067
|
|
|
@@ -9621,6 +10119,39 @@ class DebugHookConfigTypeDef(TypedDict):
|
|
|
9621
10119
|
CollectionConfigurations: NotRequired[Sequence[CollectionConfigurationUnionTypeDef]]
|
|
9622
10120
|
|
|
9623
10121
|
|
|
10122
|
+
class ComputeQuotaSummaryTypeDef(TypedDict):
|
|
10123
|
+
ComputeQuotaArn: str
|
|
10124
|
+
ComputeQuotaId: str
|
|
10125
|
+
Name: str
|
|
10126
|
+
Status: SchedulerResourceStatusType
|
|
10127
|
+
ComputeQuotaTarget: ComputeQuotaTargetTypeDef
|
|
10128
|
+
CreationTime: datetime
|
|
10129
|
+
ComputeQuotaVersion: NotRequired[int]
|
|
10130
|
+
ClusterArn: NotRequired[str]
|
|
10131
|
+
ComputeQuotaConfig: NotRequired[ComputeQuotaConfigOutputTypeDef]
|
|
10132
|
+
ActivationState: NotRequired[ActivationStateType]
|
|
10133
|
+
LastModifiedTime: NotRequired[datetime]
|
|
10134
|
+
|
|
10135
|
+
|
|
10136
|
+
class CreateComputeQuotaRequestRequestTypeDef(TypedDict):
|
|
10137
|
+
Name: str
|
|
10138
|
+
ClusterArn: str
|
|
10139
|
+
ComputeQuotaConfig: ComputeQuotaConfigTypeDef
|
|
10140
|
+
ComputeQuotaTarget: ComputeQuotaTargetTypeDef
|
|
10141
|
+
Description: NotRequired[str]
|
|
10142
|
+
ActivationState: NotRequired[ActivationStateType]
|
|
10143
|
+
Tags: NotRequired[Sequence[TagTypeDef]]
|
|
10144
|
+
|
|
10145
|
+
|
|
10146
|
+
class UpdateComputeQuotaRequestRequestTypeDef(TypedDict):
|
|
10147
|
+
ComputeQuotaId: str
|
|
10148
|
+
TargetVersion: int
|
|
10149
|
+
ComputeQuotaConfig: NotRequired[ComputeQuotaConfigTypeDef]
|
|
10150
|
+
ComputeQuotaTarget: NotRequired[ComputeQuotaTargetTypeDef]
|
|
10151
|
+
ActivationState: NotRequired[ActivationStateType]
|
|
10152
|
+
Description: NotRequired[str]
|
|
10153
|
+
|
|
10154
|
+
|
|
9624
10155
|
class CodeEditorAppImageConfigTypeDef(TypedDict):
|
|
9625
10156
|
FileSystemConfig: NotRequired[FileSystemConfigTypeDef]
|
|
9626
10157
|
ContainerConfig: NotRequired[ContainerConfigUnionTypeDef]
|
|
@@ -9652,6 +10183,7 @@ class ClusterInstanceGroupSpecificationTypeDef(TypedDict):
|
|
|
9652
10183
|
ThreadsPerCore: NotRequired[int]
|
|
9653
10184
|
InstanceStorageConfigs: NotRequired[Sequence[ClusterInstanceStorageConfigTypeDef]]
|
|
9654
10185
|
OnStartDeepHealthChecks: NotRequired[Sequence[DeepHealthCheckTypeType]]
|
|
10186
|
+
TrainingPlanArn: NotRequired[str]
|
|
9655
10187
|
OverrideVpcConfig: NotRequired[VpcConfigUnionTypeDef]
|
|
9656
10188
|
|
|
9657
10189
|
|
|
@@ -9756,6 +10288,12 @@ class ListTrainingJobsResponseTypeDef(TypedDict):
|
|
|
9756
10288
|
NextToken: NotRequired[str]
|
|
9757
10289
|
|
|
9758
10290
|
|
|
10291
|
+
class ListTrainingPlansResponseTypeDef(TypedDict):
|
|
10292
|
+
TrainingPlanSummaries: List[TrainingPlanSummaryTypeDef]
|
|
10293
|
+
ResponseMetadata: ResponseMetadataTypeDef
|
|
10294
|
+
NextToken: NotRequired[str]
|
|
10295
|
+
|
|
10296
|
+
|
|
9759
10297
|
class ListTrialsResponseTypeDef(TypedDict):
|
|
9760
10298
|
TrialSummaries: List[TrialSummaryTypeDef]
|
|
9761
10299
|
ResponseMetadata: ResponseMetadataTypeDef
|
|
@@ -9920,6 +10458,25 @@ class DescribeArtifactResponseTypeDef(TypedDict):
|
|
|
9920
10458
|
ResponseMetadata: ResponseMetadataTypeDef
|
|
9921
10459
|
|
|
9922
10460
|
|
|
10461
|
+
class DescribeComputeQuotaResponseTypeDef(TypedDict):
|
|
10462
|
+
ComputeQuotaArn: str
|
|
10463
|
+
ComputeQuotaId: str
|
|
10464
|
+
Name: str
|
|
10465
|
+
Description: str
|
|
10466
|
+
ComputeQuotaVersion: int
|
|
10467
|
+
Status: SchedulerResourceStatusType
|
|
10468
|
+
FailureReason: str
|
|
10469
|
+
ClusterArn: str
|
|
10470
|
+
ComputeQuotaConfig: ComputeQuotaConfigOutputTypeDef
|
|
10471
|
+
ComputeQuotaTarget: ComputeQuotaTargetTypeDef
|
|
10472
|
+
ActivationState: ActivationStateType
|
|
10473
|
+
CreationTime: datetime
|
|
10474
|
+
CreatedBy: UserContextTypeDef
|
|
10475
|
+
LastModifiedTime: datetime
|
|
10476
|
+
LastModifiedBy: UserContextTypeDef
|
|
10477
|
+
ResponseMetadata: ResponseMetadataTypeDef
|
|
10478
|
+
|
|
10479
|
+
|
|
9923
10480
|
class DescribeContextResponseTypeDef(TypedDict):
|
|
9924
10481
|
ContextName: str
|
|
9925
10482
|
ContextArn: str
|
|
@@ -10372,6 +10929,38 @@ class PendingDeploymentSummaryTypeDef(TypedDict):
|
|
|
10372
10929
|
ShadowProductionVariants: NotRequired[List[PendingProductionVariantSummaryTypeDef]]
|
|
10373
10930
|
|
|
10374
10931
|
|
|
10932
|
+
class DescribeClusterSchedulerConfigResponseTypeDef(TypedDict):
|
|
10933
|
+
ClusterSchedulerConfigArn: str
|
|
10934
|
+
ClusterSchedulerConfigId: str
|
|
10935
|
+
Name: str
|
|
10936
|
+
ClusterSchedulerConfigVersion: int
|
|
10937
|
+
Status: SchedulerResourceStatusType
|
|
10938
|
+
FailureReason: str
|
|
10939
|
+
ClusterArn: str
|
|
10940
|
+
SchedulerConfig: SchedulerConfigOutputTypeDef
|
|
10941
|
+
Description: str
|
|
10942
|
+
CreationTime: datetime
|
|
10943
|
+
CreatedBy: UserContextTypeDef
|
|
10944
|
+
LastModifiedTime: datetime
|
|
10945
|
+
LastModifiedBy: UserContextTypeDef
|
|
10946
|
+
ResponseMetadata: ResponseMetadataTypeDef
|
|
10947
|
+
|
|
10948
|
+
|
|
10949
|
+
class CreateClusterSchedulerConfigRequestRequestTypeDef(TypedDict):
|
|
10950
|
+
Name: str
|
|
10951
|
+
ClusterArn: str
|
|
10952
|
+
SchedulerConfig: SchedulerConfigTypeDef
|
|
10953
|
+
Description: NotRequired[str]
|
|
10954
|
+
Tags: NotRequired[Sequence[TagTypeDef]]
|
|
10955
|
+
|
|
10956
|
+
|
|
10957
|
+
class UpdateClusterSchedulerConfigRequestRequestTypeDef(TypedDict):
|
|
10958
|
+
ClusterSchedulerConfigId: str
|
|
10959
|
+
TargetVersion: int
|
|
10960
|
+
SchedulerConfig: NotRequired[SchedulerConfigTypeDef]
|
|
10961
|
+
Description: NotRequired[str]
|
|
10962
|
+
|
|
10963
|
+
|
|
10375
10964
|
class ProcessingOutputConfigOutputTypeDef(TypedDict):
|
|
10376
10965
|
Outputs: List[ProcessingOutputTypeDef]
|
|
10377
10966
|
KmsKeyId: NotRequired[str]
|
|
@@ -10502,6 +11091,11 @@ class RecommendationJobContainerConfigTypeDef(TypedDict):
|
|
|
10502
11091
|
SupportedResponseMIMETypes: NotRequired[Sequence[str]]
|
|
10503
11092
|
|
|
10504
11093
|
|
|
11094
|
+
class SearchTrainingPlanOfferingsResponseTypeDef(TypedDict):
|
|
11095
|
+
TrainingPlanOfferings: List[TrainingPlanOfferingTypeDef]
|
|
11096
|
+
ResponseMetadata: ResponseMetadataTypeDef
|
|
11097
|
+
|
|
11098
|
+
|
|
10505
11099
|
class DataSourceTypeDef(TypedDict):
|
|
10506
11100
|
S3DataSource: NotRequired[S3DataSourceUnionTypeDef]
|
|
10507
11101
|
FileSystemDataSource: NotRequired[FileSystemDataSourceTypeDef]
|
|
@@ -10845,6 +11439,12 @@ class UpdateFeatureGroupRequestRequestTypeDef(TypedDict):
|
|
|
10845
11439
|
ThroughputConfig: NotRequired[ThroughputConfigUpdateTypeDef]
|
|
10846
11440
|
|
|
10847
11441
|
|
|
11442
|
+
class ListComputeQuotasResponseTypeDef(TypedDict):
|
|
11443
|
+
ComputeQuotaSummaries: List[ComputeQuotaSummaryTypeDef]
|
|
11444
|
+
ResponseMetadata: ResponseMetadataTypeDef
|
|
11445
|
+
NextToken: NotRequired[str]
|
|
11446
|
+
|
|
11447
|
+
|
|
10848
11448
|
class CreateAppImageConfigRequestRequestTypeDef(TypedDict):
|
|
10849
11449
|
AppImageConfigName: str
|
|
10850
11450
|
Tags: NotRequired[Sequence[TagTypeDef]]
|