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,
|
|
@@ -444,6 +460,7 @@ __all__ = (
|
|
|
444
460
|
"ClusterNodeSummaryTypeDef",
|
|
445
461
|
"ClusterOrchestratorEksConfigTypeDef",
|
|
446
462
|
"ClusterOrchestratorTypeDef",
|
|
463
|
+
"ClusterSchedulerConfigSummaryTypeDef",
|
|
447
464
|
"ClusterSummaryTypeDef",
|
|
448
465
|
"CodeEditorAppImageConfigOutputTypeDef",
|
|
449
466
|
"CodeEditorAppImageConfigTypeDef",
|
|
@@ -459,6 +476,11 @@ __all__ = (
|
|
|
459
476
|
"CollectionConfigurationTypeDef",
|
|
460
477
|
"CollectionConfigurationUnionTypeDef",
|
|
461
478
|
"CompilationJobSummaryTypeDef",
|
|
479
|
+
"ComputeQuotaConfigOutputTypeDef",
|
|
480
|
+
"ComputeQuotaConfigTypeDef",
|
|
481
|
+
"ComputeQuotaResourceConfigTypeDef",
|
|
482
|
+
"ComputeQuotaSummaryTypeDef",
|
|
483
|
+
"ComputeQuotaTargetTypeDef",
|
|
462
484
|
"ConditionStepMetadataTypeDef",
|
|
463
485
|
"ContainerConfigOutputTypeDef",
|
|
464
486
|
"ContainerConfigTypeDef",
|
|
@@ -487,10 +509,14 @@ __all__ = (
|
|
|
487
509
|
"CreateAutoMLJobV2ResponseTypeDef",
|
|
488
510
|
"CreateClusterRequestRequestTypeDef",
|
|
489
511
|
"CreateClusterResponseTypeDef",
|
|
512
|
+
"CreateClusterSchedulerConfigRequestRequestTypeDef",
|
|
513
|
+
"CreateClusterSchedulerConfigResponseTypeDef",
|
|
490
514
|
"CreateCodeRepositoryInputRequestTypeDef",
|
|
491
515
|
"CreateCodeRepositoryOutputTypeDef",
|
|
492
516
|
"CreateCompilationJobRequestRequestTypeDef",
|
|
493
517
|
"CreateCompilationJobResponseTypeDef",
|
|
518
|
+
"CreateComputeQuotaRequestRequestTypeDef",
|
|
519
|
+
"CreateComputeQuotaResponseTypeDef",
|
|
494
520
|
"CreateContextRequestRequestTypeDef",
|
|
495
521
|
"CreateContextResponseTypeDef",
|
|
496
522
|
"CreateDataQualityJobDefinitionRequestRequestTypeDef",
|
|
@@ -558,6 +584,10 @@ __all__ = (
|
|
|
558
584
|
"CreateNotebookInstanceOutputTypeDef",
|
|
559
585
|
"CreateOptimizationJobRequestRequestTypeDef",
|
|
560
586
|
"CreateOptimizationJobResponseTypeDef",
|
|
587
|
+
"CreatePartnerAppPresignedUrlRequestRequestTypeDef",
|
|
588
|
+
"CreatePartnerAppPresignedUrlResponseTypeDef",
|
|
589
|
+
"CreatePartnerAppRequestRequestTypeDef",
|
|
590
|
+
"CreatePartnerAppResponseTypeDef",
|
|
561
591
|
"CreatePipelineRequestRequestTypeDef",
|
|
562
592
|
"CreatePipelineResponseTypeDef",
|
|
563
593
|
"CreatePresignedDomainUrlRequestRequestTypeDef",
|
|
@@ -576,6 +606,8 @@ __all__ = (
|
|
|
576
606
|
"CreateStudioLifecycleConfigResponseTypeDef",
|
|
577
607
|
"CreateTrainingJobRequestRequestTypeDef",
|
|
578
608
|
"CreateTrainingJobResponseTypeDef",
|
|
609
|
+
"CreateTrainingPlanRequestRequestTypeDef",
|
|
610
|
+
"CreateTrainingPlanResponseTypeDef",
|
|
579
611
|
"CreateTransformJobRequestRequestTypeDef",
|
|
580
612
|
"CreateTransformJobResponseTypeDef",
|
|
581
613
|
"CreateTrialComponentRequestRequestTypeDef",
|
|
@@ -628,8 +660,10 @@ __all__ = (
|
|
|
628
660
|
"DeleteAssociationResponseTypeDef",
|
|
629
661
|
"DeleteClusterRequestRequestTypeDef",
|
|
630
662
|
"DeleteClusterResponseTypeDef",
|
|
663
|
+
"DeleteClusterSchedulerConfigRequestRequestTypeDef",
|
|
631
664
|
"DeleteCodeRepositoryInputRequestTypeDef",
|
|
632
665
|
"DeleteCompilationJobRequestRequestTypeDef",
|
|
666
|
+
"DeleteComputeQuotaRequestRequestTypeDef",
|
|
633
667
|
"DeleteContextRequestRequestTypeDef",
|
|
634
668
|
"DeleteContextResponseTypeDef",
|
|
635
669
|
"DeleteDataQualityJobDefinitionRequestRequestTypeDef",
|
|
@@ -667,6 +701,8 @@ __all__ = (
|
|
|
667
701
|
"DeleteNotebookInstanceInputRequestTypeDef",
|
|
668
702
|
"DeleteNotebookInstanceLifecycleConfigInputRequestTypeDef",
|
|
669
703
|
"DeleteOptimizationJobRequestRequestTypeDef",
|
|
704
|
+
"DeletePartnerAppRequestRequestTypeDef",
|
|
705
|
+
"DeletePartnerAppResponseTypeDef",
|
|
670
706
|
"DeletePipelineRequestRequestTypeDef",
|
|
671
707
|
"DeletePipelineResponseTypeDef",
|
|
672
708
|
"DeleteProjectInputRequestTypeDef",
|
|
@@ -707,10 +743,14 @@ __all__ = (
|
|
|
707
743
|
"DescribeClusterNodeResponseTypeDef",
|
|
708
744
|
"DescribeClusterRequestRequestTypeDef",
|
|
709
745
|
"DescribeClusterResponseTypeDef",
|
|
746
|
+
"DescribeClusterSchedulerConfigRequestRequestTypeDef",
|
|
747
|
+
"DescribeClusterSchedulerConfigResponseTypeDef",
|
|
710
748
|
"DescribeCodeRepositoryInputRequestTypeDef",
|
|
711
749
|
"DescribeCodeRepositoryOutputTypeDef",
|
|
712
750
|
"DescribeCompilationJobRequestRequestTypeDef",
|
|
713
751
|
"DescribeCompilationJobResponseTypeDef",
|
|
752
|
+
"DescribeComputeQuotaRequestRequestTypeDef",
|
|
753
|
+
"DescribeComputeQuotaResponseTypeDef",
|
|
714
754
|
"DescribeContextRequestRequestTypeDef",
|
|
715
755
|
"DescribeContextResponseTypeDef",
|
|
716
756
|
"DescribeDataQualityJobDefinitionRequestRequestTypeDef",
|
|
@@ -795,6 +835,8 @@ __all__ = (
|
|
|
795
835
|
"DescribeNotebookInstanceOutputTypeDef",
|
|
796
836
|
"DescribeOptimizationJobRequestRequestTypeDef",
|
|
797
837
|
"DescribeOptimizationJobResponseTypeDef",
|
|
838
|
+
"DescribePartnerAppRequestRequestTypeDef",
|
|
839
|
+
"DescribePartnerAppResponseTypeDef",
|
|
798
840
|
"DescribePipelineDefinitionForExecutionRequestRequestTypeDef",
|
|
799
841
|
"DescribePipelineDefinitionForExecutionResponseTypeDef",
|
|
800
842
|
"DescribePipelineExecutionRequestRequestTypeDef",
|
|
@@ -815,6 +857,8 @@ __all__ = (
|
|
|
815
857
|
"DescribeTrainingJobRequestRequestTypeDef",
|
|
816
858
|
"DescribeTrainingJobRequestTrainingJobCompletedOrStoppedWaitTypeDef",
|
|
817
859
|
"DescribeTrainingJobResponseTypeDef",
|
|
860
|
+
"DescribeTrainingPlanRequestRequestTypeDef",
|
|
861
|
+
"DescribeTrainingPlanResponseTypeDef",
|
|
818
862
|
"DescribeTransformJobRequestRequestTypeDef",
|
|
819
863
|
"DescribeTransformJobRequestTransformJobCompletedOrStoppedWaitTypeDef",
|
|
820
864
|
"DescribeTransformJobResponseTypeDef",
|
|
@@ -891,6 +935,7 @@ __all__ = (
|
|
|
891
935
|
"EnvironmentParameterRangesTypeDef",
|
|
892
936
|
"EnvironmentParameterRangesUnionTypeDef",
|
|
893
937
|
"EnvironmentParameterTypeDef",
|
|
938
|
+
"ErrorInfoTypeDef",
|
|
894
939
|
"ExperimentConfigTypeDef",
|
|
895
940
|
"ExperimentSourceTypeDef",
|
|
896
941
|
"ExperimentSummaryTypeDef",
|
|
@@ -898,6 +943,8 @@ __all__ = (
|
|
|
898
943
|
"ExplainabilityTypeDef",
|
|
899
944
|
"ExplainerConfigOutputTypeDef",
|
|
900
945
|
"ExplainerConfigTypeDef",
|
|
946
|
+
"FSxLustreFileSystemConfigTypeDef",
|
|
947
|
+
"FSxLustreFileSystemTypeDef",
|
|
901
948
|
"FailStepMetadataTypeDef",
|
|
902
949
|
"FeatureDefinitionTypeDef",
|
|
903
950
|
"FeatureGroupSummaryTypeDef",
|
|
@@ -1073,6 +1120,9 @@ __all__ = (
|
|
|
1073
1120
|
"ListClusterNodesRequestListClusterNodesPaginateTypeDef",
|
|
1074
1121
|
"ListClusterNodesRequestRequestTypeDef",
|
|
1075
1122
|
"ListClusterNodesResponseTypeDef",
|
|
1123
|
+
"ListClusterSchedulerConfigsRequestListClusterSchedulerConfigsPaginateTypeDef",
|
|
1124
|
+
"ListClusterSchedulerConfigsRequestRequestTypeDef",
|
|
1125
|
+
"ListClusterSchedulerConfigsResponseTypeDef",
|
|
1076
1126
|
"ListClustersRequestListClustersPaginateTypeDef",
|
|
1077
1127
|
"ListClustersRequestRequestTypeDef",
|
|
1078
1128
|
"ListClustersResponseTypeDef",
|
|
@@ -1082,6 +1132,9 @@ __all__ = (
|
|
|
1082
1132
|
"ListCompilationJobsRequestListCompilationJobsPaginateTypeDef",
|
|
1083
1133
|
"ListCompilationJobsRequestRequestTypeDef",
|
|
1084
1134
|
"ListCompilationJobsResponseTypeDef",
|
|
1135
|
+
"ListComputeQuotasRequestListComputeQuotasPaginateTypeDef",
|
|
1136
|
+
"ListComputeQuotasRequestRequestTypeDef",
|
|
1137
|
+
"ListComputeQuotasResponseTypeDef",
|
|
1085
1138
|
"ListContextsRequestListContextsPaginateTypeDef",
|
|
1086
1139
|
"ListContextsRequestRequestTypeDef",
|
|
1087
1140
|
"ListContextsResponseTypeDef",
|
|
@@ -1211,6 +1264,9 @@ __all__ = (
|
|
|
1211
1264
|
"ListOptimizationJobsRequestListOptimizationJobsPaginateTypeDef",
|
|
1212
1265
|
"ListOptimizationJobsRequestRequestTypeDef",
|
|
1213
1266
|
"ListOptimizationJobsResponseTypeDef",
|
|
1267
|
+
"ListPartnerAppsRequestListPartnerAppsPaginateTypeDef",
|
|
1268
|
+
"ListPartnerAppsRequestRequestTypeDef",
|
|
1269
|
+
"ListPartnerAppsResponseTypeDef",
|
|
1214
1270
|
"ListPipelineExecutionStepsRequestListPipelineExecutionStepsPaginateTypeDef",
|
|
1215
1271
|
"ListPipelineExecutionStepsRequestRequestTypeDef",
|
|
1216
1272
|
"ListPipelineExecutionStepsResponseTypeDef",
|
|
@@ -1252,6 +1308,9 @@ __all__ = (
|
|
|
1252
1308
|
"ListTrainingJobsRequestListTrainingJobsPaginateTypeDef",
|
|
1253
1309
|
"ListTrainingJobsRequestRequestTypeDef",
|
|
1254
1310
|
"ListTrainingJobsResponseTypeDef",
|
|
1311
|
+
"ListTrainingPlansRequestListTrainingPlansPaginateTypeDef",
|
|
1312
|
+
"ListTrainingPlansRequestRequestTypeDef",
|
|
1313
|
+
"ListTrainingPlansResponseTypeDef",
|
|
1255
1314
|
"ListTransformJobsRequestListTransformJobsPaginateTypeDef",
|
|
1256
1315
|
"ListTransformJobsRequestRequestTypeDef",
|
|
1257
1316
|
"ListTransformJobsResponseTypeDef",
|
|
@@ -1441,6 +1500,10 @@ __all__ = (
|
|
|
1441
1500
|
"ParameterTypeDef",
|
|
1442
1501
|
"ParentHyperParameterTuningJobTypeDef",
|
|
1443
1502
|
"ParentTypeDef",
|
|
1503
|
+
"PartnerAppConfigOutputTypeDef",
|
|
1504
|
+
"PartnerAppConfigTypeDef",
|
|
1505
|
+
"PartnerAppMaintenanceConfigTypeDef",
|
|
1506
|
+
"PartnerAppSummaryTypeDef",
|
|
1444
1507
|
"PendingDeploymentSummaryTypeDef",
|
|
1445
1508
|
"PendingProductionVariantSummaryTypeDef",
|
|
1446
1509
|
"PhaseTypeDef",
|
|
@@ -1453,6 +1516,7 @@ __all__ = (
|
|
|
1453
1516
|
"PipelineSummaryTypeDef",
|
|
1454
1517
|
"PipelineTypeDef",
|
|
1455
1518
|
"PredefinedMetricSpecificationTypeDef",
|
|
1519
|
+
"PriorityClassTypeDef",
|
|
1456
1520
|
"ProcessingClusterConfigTypeDef",
|
|
1457
1521
|
"ProcessingFeatureStoreOutputTypeDef",
|
|
1458
1522
|
"ProcessingInputTypeDef",
|
|
@@ -1529,6 +1593,8 @@ __all__ = (
|
|
|
1529
1593
|
"RenderableTaskTypeDef",
|
|
1530
1594
|
"RenderingErrorTypeDef",
|
|
1531
1595
|
"RepositoryAuthConfigTypeDef",
|
|
1596
|
+
"ReservedCapacityOfferingTypeDef",
|
|
1597
|
+
"ReservedCapacitySummaryTypeDef",
|
|
1532
1598
|
"ResolvedAttributesTypeDef",
|
|
1533
1599
|
"ResourceCatalogTypeDef",
|
|
1534
1600
|
"ResourceConfigForUpdateTypeDef",
|
|
@@ -1536,6 +1602,7 @@ __all__ = (
|
|
|
1536
1602
|
"ResourceConfigTypeDef",
|
|
1537
1603
|
"ResourceConfigUnionTypeDef",
|
|
1538
1604
|
"ResourceLimitsTypeDef",
|
|
1605
|
+
"ResourceSharingConfigTypeDef",
|
|
1539
1606
|
"ResourceSpecTypeDef",
|
|
1540
1607
|
"ResponseMetadataTypeDef",
|
|
1541
1608
|
"RetentionPolicyTypeDef",
|
|
@@ -1553,12 +1620,16 @@ __all__ = (
|
|
|
1553
1620
|
"ScalingPolicyObjectiveTypeDef",
|
|
1554
1621
|
"ScalingPolicyTypeDef",
|
|
1555
1622
|
"ScheduleConfigTypeDef",
|
|
1623
|
+
"SchedulerConfigOutputTypeDef",
|
|
1624
|
+
"SchedulerConfigTypeDef",
|
|
1556
1625
|
"SearchExpressionPaginatorTypeDef",
|
|
1557
1626
|
"SearchExpressionTypeDef",
|
|
1558
1627
|
"SearchRecordTypeDef",
|
|
1559
1628
|
"SearchRequestRequestTypeDef",
|
|
1560
1629
|
"SearchRequestSearchPaginateTypeDef",
|
|
1561
1630
|
"SearchResponseTypeDef",
|
|
1631
|
+
"SearchTrainingPlanOfferingsRequestRequestTypeDef",
|
|
1632
|
+
"SearchTrainingPlanOfferingsResponseTypeDef",
|
|
1562
1633
|
"SecondaryStatusTransitionTypeDef",
|
|
1563
1634
|
"SelectedStepTypeDef",
|
|
1564
1635
|
"SelectiveExecutionConfigOutputTypeDef",
|
|
@@ -1673,6 +1744,9 @@ __all__ = (
|
|
|
1673
1744
|
"TrainingJobStepMetadataTypeDef",
|
|
1674
1745
|
"TrainingJobSummaryTypeDef",
|
|
1675
1746
|
"TrainingJobTypeDef",
|
|
1747
|
+
"TrainingPlanFilterTypeDef",
|
|
1748
|
+
"TrainingPlanOfferingTypeDef",
|
|
1749
|
+
"TrainingPlanSummaryTypeDef",
|
|
1676
1750
|
"TrainingRepositoryAuthConfigTypeDef",
|
|
1677
1751
|
"TrainingSpecificationOutputTypeDef",
|
|
1678
1752
|
"TrainingSpecificationTypeDef",
|
|
@@ -1714,10 +1788,14 @@ __all__ = (
|
|
|
1714
1788
|
"UpdateArtifactResponseTypeDef",
|
|
1715
1789
|
"UpdateClusterRequestRequestTypeDef",
|
|
1716
1790
|
"UpdateClusterResponseTypeDef",
|
|
1791
|
+
"UpdateClusterSchedulerConfigRequestRequestTypeDef",
|
|
1792
|
+
"UpdateClusterSchedulerConfigResponseTypeDef",
|
|
1717
1793
|
"UpdateClusterSoftwareRequestRequestTypeDef",
|
|
1718
1794
|
"UpdateClusterSoftwareResponseTypeDef",
|
|
1719
1795
|
"UpdateCodeRepositoryInputRequestTypeDef",
|
|
1720
1796
|
"UpdateCodeRepositoryOutputTypeDef",
|
|
1797
|
+
"UpdateComputeQuotaRequestRequestTypeDef",
|
|
1798
|
+
"UpdateComputeQuotaResponseTypeDef",
|
|
1721
1799
|
"UpdateContextRequestRequestTypeDef",
|
|
1722
1800
|
"UpdateContextResponseTypeDef",
|
|
1723
1801
|
"UpdateDeviceFleetRequestRequestTypeDef",
|
|
@@ -1757,6 +1835,8 @@ __all__ = (
|
|
|
1757
1835
|
"UpdateMonitoringScheduleResponseTypeDef",
|
|
1758
1836
|
"UpdateNotebookInstanceInputRequestTypeDef",
|
|
1759
1837
|
"UpdateNotebookInstanceLifecycleConfigInputRequestTypeDef",
|
|
1838
|
+
"UpdatePartnerAppRequestRequestTypeDef",
|
|
1839
|
+
"UpdatePartnerAppResponseTypeDef",
|
|
1760
1840
|
"UpdatePipelineExecutionRequestRequestTypeDef",
|
|
1761
1841
|
"UpdatePipelineExecutionResponseTypeDef",
|
|
1762
1842
|
"UpdatePipelineRequestRequestTypeDef",
|
|
@@ -2191,11 +2271,22 @@ class ClusterInstanceStatusDetailsTypeDef(TypedDict):
|
|
|
2191
2271
|
class ClusterOrchestratorEksConfigTypeDef(TypedDict):
|
|
2192
2272
|
ClusterArn: str
|
|
2193
2273
|
|
|
2274
|
+
class ClusterSchedulerConfigSummaryTypeDef(TypedDict):
|
|
2275
|
+
ClusterSchedulerConfigArn: str
|
|
2276
|
+
ClusterSchedulerConfigId: str
|
|
2277
|
+
Name: str
|
|
2278
|
+
CreationTime: datetime
|
|
2279
|
+
Status: SchedulerResourceStatusType
|
|
2280
|
+
ClusterSchedulerConfigVersion: NotRequired[int]
|
|
2281
|
+
LastModifiedTime: NotRequired[datetime]
|
|
2282
|
+
ClusterArn: NotRequired[str]
|
|
2283
|
+
|
|
2194
2284
|
class ClusterSummaryTypeDef(TypedDict):
|
|
2195
2285
|
ClusterArn: str
|
|
2196
2286
|
ClusterName: str
|
|
2197
2287
|
CreationTime: datetime
|
|
2198
2288
|
ClusterStatus: ClusterStatusType
|
|
2289
|
+
TrainingPlanArns: NotRequired[List[str]]
|
|
2199
2290
|
|
|
2200
2291
|
class ContainerConfigOutputTypeDef(TypedDict):
|
|
2201
2292
|
ContainerArguments: NotRequired[List[str]]
|
|
@@ -2253,6 +2344,18 @@ class CompilationJobSummaryTypeDef(TypedDict):
|
|
|
2253
2344
|
CompilationTargetPlatformAccelerator: NotRequired[TargetPlatformAcceleratorType]
|
|
2254
2345
|
LastModifiedTime: NotRequired[datetime]
|
|
2255
2346
|
|
|
2347
|
+
class ComputeQuotaResourceConfigTypeDef(TypedDict):
|
|
2348
|
+
InstanceType: ClusterInstanceTypeType
|
|
2349
|
+
Count: int
|
|
2350
|
+
|
|
2351
|
+
class ResourceSharingConfigTypeDef(TypedDict):
|
|
2352
|
+
Strategy: ResourceSharingStrategyType
|
|
2353
|
+
BorrowLimit: NotRequired[int]
|
|
2354
|
+
|
|
2355
|
+
class ComputeQuotaTargetTypeDef(TypedDict):
|
|
2356
|
+
TeamName: str
|
|
2357
|
+
FairShareWeight: NotRequired[int]
|
|
2358
|
+
|
|
2256
2359
|
class ConditionStepMetadataTypeDef(TypedDict):
|
|
2257
2360
|
Outcome: NotRequired[ConditionOutcomeType]
|
|
2258
2361
|
|
|
@@ -2429,6 +2532,18 @@ class OptimizationVpcConfigTypeDef(TypedDict):
|
|
|
2429
2532
|
SecurityGroupIds: Sequence[str]
|
|
2430
2533
|
Subnets: Sequence[str]
|
|
2431
2534
|
|
|
2535
|
+
class CreatePartnerAppPresignedUrlRequestRequestTypeDef(TypedDict):
|
|
2536
|
+
Arn: str
|
|
2537
|
+
ExpiresInSeconds: NotRequired[int]
|
|
2538
|
+
SessionExpirationDurationInSeconds: NotRequired[int]
|
|
2539
|
+
|
|
2540
|
+
class PartnerAppConfigTypeDef(TypedDict):
|
|
2541
|
+
AdminUsers: NotRequired[Sequence[str]]
|
|
2542
|
+
Arguments: NotRequired[Mapping[str, str]]
|
|
2543
|
+
|
|
2544
|
+
class PartnerAppMaintenanceConfigTypeDef(TypedDict):
|
|
2545
|
+
MaintenanceWindowStart: NotRequired[str]
|
|
2546
|
+
|
|
2432
2547
|
class ParallelismConfigurationTypeDef(TypedDict):
|
|
2433
2548
|
MaxParallelExecutionSteps: int
|
|
2434
2549
|
|
|
@@ -2557,9 +2672,16 @@ class EFSFileSystemConfigTypeDef(TypedDict):
|
|
|
2557
2672
|
FileSystemId: str
|
|
2558
2673
|
FileSystemPath: NotRequired[str]
|
|
2559
2674
|
|
|
2675
|
+
class FSxLustreFileSystemConfigTypeDef(TypedDict):
|
|
2676
|
+
FileSystemId: str
|
|
2677
|
+
FileSystemPath: NotRequired[str]
|
|
2678
|
+
|
|
2560
2679
|
class EFSFileSystemTypeDef(TypedDict):
|
|
2561
2680
|
FileSystemId: str
|
|
2562
2681
|
|
|
2682
|
+
class FSxLustreFileSystemTypeDef(TypedDict):
|
|
2683
|
+
FileSystemId: str
|
|
2684
|
+
|
|
2563
2685
|
class CustomPosixUserConfigTypeDef(TypedDict):
|
|
2564
2686
|
Uid: int
|
|
2565
2687
|
Gid: int
|
|
@@ -2692,12 +2814,18 @@ class DeleteAssociationRequestRequestTypeDef(TypedDict):
|
|
|
2692
2814
|
class DeleteClusterRequestRequestTypeDef(TypedDict):
|
|
2693
2815
|
ClusterName: str
|
|
2694
2816
|
|
|
2817
|
+
class DeleteClusterSchedulerConfigRequestRequestTypeDef(TypedDict):
|
|
2818
|
+
ClusterSchedulerConfigId: str
|
|
2819
|
+
|
|
2695
2820
|
class DeleteCodeRepositoryInputRequestTypeDef(TypedDict):
|
|
2696
2821
|
CodeRepositoryName: str
|
|
2697
2822
|
|
|
2698
2823
|
class DeleteCompilationJobRequestRequestTypeDef(TypedDict):
|
|
2699
2824
|
CompilationJobName: str
|
|
2700
2825
|
|
|
2826
|
+
class DeleteComputeQuotaRequestRequestTypeDef(TypedDict):
|
|
2827
|
+
ComputeQuotaId: str
|
|
2828
|
+
|
|
2701
2829
|
class DeleteContextRequestRequestTypeDef(TypedDict):
|
|
2702
2830
|
ContextName: str
|
|
2703
2831
|
|
|
@@ -2805,6 +2933,10 @@ class DeleteNotebookInstanceLifecycleConfigInputRequestTypeDef(TypedDict):
|
|
|
2805
2933
|
class DeleteOptimizationJobRequestRequestTypeDef(TypedDict):
|
|
2806
2934
|
OptimizationJobName: str
|
|
2807
2935
|
|
|
2936
|
+
class DeletePartnerAppRequestRequestTypeDef(TypedDict):
|
|
2937
|
+
Arn: str
|
|
2938
|
+
ClientToken: NotRequired[str]
|
|
2939
|
+
|
|
2808
2940
|
class DeletePipelineRequestRequestTypeDef(TypedDict):
|
|
2809
2941
|
PipelineName: str
|
|
2810
2942
|
ClientRequestToken: str
|
|
@@ -2908,6 +3040,10 @@ class DescribeClusterNodeRequestRequestTypeDef(TypedDict):
|
|
|
2908
3040
|
class DescribeClusterRequestRequestTypeDef(TypedDict):
|
|
2909
3041
|
ClusterName: str
|
|
2910
3042
|
|
|
3043
|
+
class DescribeClusterSchedulerConfigRequestRequestTypeDef(TypedDict):
|
|
3044
|
+
ClusterSchedulerConfigId: str
|
|
3045
|
+
ClusterSchedulerConfigVersion: NotRequired[int]
|
|
3046
|
+
|
|
2911
3047
|
class DescribeCodeRepositoryInputRequestTypeDef(TypedDict):
|
|
2912
3048
|
CodeRepositoryName: str
|
|
2913
3049
|
|
|
@@ -2924,6 +3060,10 @@ class NeoVpcConfigOutputTypeDef(TypedDict):
|
|
|
2924
3060
|
SecurityGroupIds: List[str]
|
|
2925
3061
|
Subnets: List[str]
|
|
2926
3062
|
|
|
3063
|
+
class DescribeComputeQuotaRequestRequestTypeDef(TypedDict):
|
|
3064
|
+
ComputeQuotaId: str
|
|
3065
|
+
ComputeQuotaVersion: NotRequired[int]
|
|
3066
|
+
|
|
2927
3067
|
class DescribeContextRequestRequestTypeDef(TypedDict):
|
|
2928
3068
|
ContextName: str
|
|
2929
3069
|
|
|
@@ -3181,6 +3321,17 @@ class OptimizationVpcConfigOutputTypeDef(TypedDict):
|
|
|
3181
3321
|
SecurityGroupIds: List[str]
|
|
3182
3322
|
Subnets: List[str]
|
|
3183
3323
|
|
|
3324
|
+
class DescribePartnerAppRequestRequestTypeDef(TypedDict):
|
|
3325
|
+
Arn: str
|
|
3326
|
+
|
|
3327
|
+
class ErrorInfoTypeDef(TypedDict):
|
|
3328
|
+
Code: NotRequired[str]
|
|
3329
|
+
Reason: NotRequired[str]
|
|
3330
|
+
|
|
3331
|
+
class PartnerAppConfigOutputTypeDef(TypedDict):
|
|
3332
|
+
AdminUsers: NotRequired[List[str]]
|
|
3333
|
+
Arguments: NotRequired[Dict[str, str]]
|
|
3334
|
+
|
|
3184
3335
|
class DescribePipelineDefinitionForExecutionRequestRequestTypeDef(TypedDict):
|
|
3185
3336
|
PipelineExecutionArn: str
|
|
3186
3337
|
|
|
@@ -3262,6 +3413,20 @@ class WarmPoolStatusTypeDef(TypedDict):
|
|
|
3262
3413
|
ResourceRetainedBillableTimeInSeconds: NotRequired[int]
|
|
3263
3414
|
ReusedByJob: NotRequired[str]
|
|
3264
3415
|
|
|
3416
|
+
class DescribeTrainingPlanRequestRequestTypeDef(TypedDict):
|
|
3417
|
+
TrainingPlanName: str
|
|
3418
|
+
|
|
3419
|
+
class ReservedCapacitySummaryTypeDef(TypedDict):
|
|
3420
|
+
ReservedCapacityArn: str
|
|
3421
|
+
InstanceType: ReservedCapacityInstanceTypeType
|
|
3422
|
+
TotalInstanceCount: int
|
|
3423
|
+
Status: ReservedCapacityStatusType
|
|
3424
|
+
AvailabilityZone: NotRequired[str]
|
|
3425
|
+
DurationHours: NotRequired[int]
|
|
3426
|
+
DurationMinutes: NotRequired[int]
|
|
3427
|
+
StartTime: NotRequired[datetime]
|
|
3428
|
+
EndTime: NotRequired[datetime]
|
|
3429
|
+
|
|
3265
3430
|
class DescribeTransformJobRequestRequestTypeDef(TypedDict):
|
|
3266
3431
|
TransformJobName: str
|
|
3267
3432
|
|
|
@@ -3858,6 +4023,21 @@ class OptimizationJobSummaryTypeDef(TypedDict):
|
|
|
3858
4023
|
OptimizationEndTime: NotRequired[datetime]
|
|
3859
4024
|
LastModifiedTime: NotRequired[datetime]
|
|
3860
4025
|
|
|
4026
|
+
class ListPartnerAppsRequestRequestTypeDef(TypedDict):
|
|
4027
|
+
MaxResults: NotRequired[int]
|
|
4028
|
+
NextToken: NotRequired[str]
|
|
4029
|
+
|
|
4030
|
+
PartnerAppSummaryTypeDef = TypedDict(
|
|
4031
|
+
"PartnerAppSummaryTypeDef",
|
|
4032
|
+
{
|
|
4033
|
+
"Arn": NotRequired[str],
|
|
4034
|
+
"Name": NotRequired[str],
|
|
4035
|
+
"Type": NotRequired[PartnerAppTypeType],
|
|
4036
|
+
"Status": NotRequired[PartnerAppStatusType],
|
|
4037
|
+
"CreationTime": NotRequired[datetime],
|
|
4038
|
+
},
|
|
4039
|
+
)
|
|
4040
|
+
|
|
3861
4041
|
class ListPipelineExecutionStepsRequestRequestTypeDef(TypedDict):
|
|
3862
4042
|
PipelineExecutionArn: NotRequired[str]
|
|
3863
4043
|
NextToken: NotRequired[str]
|
|
@@ -3955,6 +4135,10 @@ class ListTrainingJobsForHyperParameterTuningJobRequestRequestTypeDef(TypedDict)
|
|
|
3955
4135
|
SortBy: NotRequired[TrainingJobSortByOptionsType]
|
|
3956
4136
|
SortOrder: NotRequired[SortOrderType]
|
|
3957
4137
|
|
|
4138
|
+
class TrainingPlanFilterTypeDef(TypedDict):
|
|
4139
|
+
Name: Literal["Status"]
|
|
4140
|
+
Value: str
|
|
4141
|
+
|
|
3958
4142
|
class TransformJobSummaryTypeDef(TypedDict):
|
|
3959
4143
|
TransformJobName: str
|
|
3960
4144
|
TransformJobArn: str
|
|
@@ -4187,6 +4371,10 @@ class TuningJobStepMetaDataTypeDef(TypedDict):
|
|
|
4187
4371
|
class SelectiveExecutionResultTypeDef(TypedDict):
|
|
4188
4372
|
SourcePipelineExecutionArn: NotRequired[str]
|
|
4189
4373
|
|
|
4374
|
+
class PriorityClassTypeDef(TypedDict):
|
|
4375
|
+
Name: str
|
|
4376
|
+
Weight: int
|
|
4377
|
+
|
|
4190
4378
|
class ProcessingClusterConfigTypeDef(TypedDict):
|
|
4191
4379
|
InstanceCount: int
|
|
4192
4380
|
InstanceType: ProcessingInstanceTypeType
|
|
@@ -4294,6 +4482,15 @@ class RenderingErrorTypeDef(TypedDict):
|
|
|
4294
4482
|
Code: str
|
|
4295
4483
|
Message: str
|
|
4296
4484
|
|
|
4485
|
+
class ReservedCapacityOfferingTypeDef(TypedDict):
|
|
4486
|
+
InstanceType: ReservedCapacityInstanceTypeType
|
|
4487
|
+
InstanceCount: int
|
|
4488
|
+
AvailabilityZone: NotRequired[str]
|
|
4489
|
+
DurationHours: NotRequired[int]
|
|
4490
|
+
DurationMinutes: NotRequired[int]
|
|
4491
|
+
StartTime: NotRequired[datetime]
|
|
4492
|
+
EndTime: NotRequired[datetime]
|
|
4493
|
+
|
|
4297
4494
|
class ResourceConfigForUpdateTypeDef(TypedDict):
|
|
4298
4495
|
KeepAlivePeriodInSeconds: int
|
|
4299
4496
|
|
|
@@ -4574,6 +4771,11 @@ class CreateClusterResponseTypeDef(TypedDict):
|
|
|
4574
4771
|
ClusterArn: str
|
|
4575
4772
|
ResponseMetadata: ResponseMetadataTypeDef
|
|
4576
4773
|
|
|
4774
|
+
class CreateClusterSchedulerConfigResponseTypeDef(TypedDict):
|
|
4775
|
+
ClusterSchedulerConfigArn: str
|
|
4776
|
+
ClusterSchedulerConfigId: str
|
|
4777
|
+
ResponseMetadata: ResponseMetadataTypeDef
|
|
4778
|
+
|
|
4577
4779
|
class CreateCodeRepositoryOutputTypeDef(TypedDict):
|
|
4578
4780
|
CodeRepositoryArn: str
|
|
4579
4781
|
ResponseMetadata: ResponseMetadataTypeDef
|
|
@@ -4582,6 +4784,11 @@ class CreateCompilationJobResponseTypeDef(TypedDict):
|
|
|
4582
4784
|
CompilationJobArn: str
|
|
4583
4785
|
ResponseMetadata: ResponseMetadataTypeDef
|
|
4584
4786
|
|
|
4787
|
+
class CreateComputeQuotaResponseTypeDef(TypedDict):
|
|
4788
|
+
ComputeQuotaArn: str
|
|
4789
|
+
ComputeQuotaId: str
|
|
4790
|
+
ResponseMetadata: ResponseMetadataTypeDef
|
|
4791
|
+
|
|
4585
4792
|
class CreateContextResponseTypeDef(TypedDict):
|
|
4586
4793
|
ContextArn: str
|
|
4587
4794
|
ResponseMetadata: ResponseMetadataTypeDef
|
|
@@ -4712,6 +4919,14 @@ class CreateOptimizationJobResponseTypeDef(TypedDict):
|
|
|
4712
4919
|
OptimizationJobArn: str
|
|
4713
4920
|
ResponseMetadata: ResponseMetadataTypeDef
|
|
4714
4921
|
|
|
4922
|
+
class CreatePartnerAppPresignedUrlResponseTypeDef(TypedDict):
|
|
4923
|
+
Url: str
|
|
4924
|
+
ResponseMetadata: ResponseMetadataTypeDef
|
|
4925
|
+
|
|
4926
|
+
class CreatePartnerAppResponseTypeDef(TypedDict):
|
|
4927
|
+
Arn: str
|
|
4928
|
+
ResponseMetadata: ResponseMetadataTypeDef
|
|
4929
|
+
|
|
4715
4930
|
class CreatePipelineResponseTypeDef(TypedDict):
|
|
4716
4931
|
PipelineArn: str
|
|
4717
4932
|
ResponseMetadata: ResponseMetadataTypeDef
|
|
@@ -4749,6 +4964,10 @@ class CreateTrainingJobResponseTypeDef(TypedDict):
|
|
|
4749
4964
|
TrainingJobArn: str
|
|
4750
4965
|
ResponseMetadata: ResponseMetadataTypeDef
|
|
4751
4966
|
|
|
4967
|
+
class CreateTrainingPlanResponseTypeDef(TypedDict):
|
|
4968
|
+
TrainingPlanArn: str
|
|
4969
|
+
ResponseMetadata: ResponseMetadataTypeDef
|
|
4970
|
+
|
|
4752
4971
|
class CreateTransformJobResponseTypeDef(TypedDict):
|
|
4753
4972
|
TransformJobArn: str
|
|
4754
4973
|
ResponseMetadata: ResponseMetadataTypeDef
|
|
@@ -4806,6 +5025,10 @@ class DeleteMlflowTrackingServerResponseTypeDef(TypedDict):
|
|
|
4806
5025
|
TrackingServerArn: str
|
|
4807
5026
|
ResponseMetadata: ResponseMetadataTypeDef
|
|
4808
5027
|
|
|
5028
|
+
class DeletePartnerAppResponseTypeDef(TypedDict):
|
|
5029
|
+
Arn: str
|
|
5030
|
+
ResponseMetadata: ResponseMetadataTypeDef
|
|
5031
|
+
|
|
4809
5032
|
class DeletePipelineResponseTypeDef(TypedDict):
|
|
4810
5033
|
PipelineArn: str
|
|
4811
5034
|
ResponseMetadata: ResponseMetadataTypeDef
|
|
@@ -4954,6 +5177,11 @@ class UpdateClusterResponseTypeDef(TypedDict):
|
|
|
4954
5177
|
ClusterArn: str
|
|
4955
5178
|
ResponseMetadata: ResponseMetadataTypeDef
|
|
4956
5179
|
|
|
5180
|
+
class UpdateClusterSchedulerConfigResponseTypeDef(TypedDict):
|
|
5181
|
+
ClusterSchedulerConfigArn: str
|
|
5182
|
+
ClusterSchedulerConfigVersion: int
|
|
5183
|
+
ResponseMetadata: ResponseMetadataTypeDef
|
|
5184
|
+
|
|
4957
5185
|
class UpdateClusterSoftwareResponseTypeDef(TypedDict):
|
|
4958
5186
|
ClusterArn: str
|
|
4959
5187
|
ResponseMetadata: ResponseMetadataTypeDef
|
|
@@ -4962,6 +5190,11 @@ class UpdateCodeRepositoryOutputTypeDef(TypedDict):
|
|
|
4962
5190
|
CodeRepositoryArn: str
|
|
4963
5191
|
ResponseMetadata: ResponseMetadataTypeDef
|
|
4964
5192
|
|
|
5193
|
+
class UpdateComputeQuotaResponseTypeDef(TypedDict):
|
|
5194
|
+
ComputeQuotaArn: str
|
|
5195
|
+
ComputeQuotaVersion: int
|
|
5196
|
+
ResponseMetadata: ResponseMetadataTypeDef
|
|
5197
|
+
|
|
4965
5198
|
class UpdateContextResponseTypeDef(TypedDict):
|
|
4966
5199
|
ContextArn: str
|
|
4967
5200
|
ResponseMetadata: ResponseMetadataTypeDef
|
|
@@ -5031,6 +5264,10 @@ class UpdateMonitoringScheduleResponseTypeDef(TypedDict):
|
|
|
5031
5264
|
MonitoringScheduleArn: str
|
|
5032
5265
|
ResponseMetadata: ResponseMetadataTypeDef
|
|
5033
5266
|
|
|
5267
|
+
class UpdatePartnerAppResponseTypeDef(TypedDict):
|
|
5268
|
+
Arn: str
|
|
5269
|
+
ResponseMetadata: ResponseMetadataTypeDef
|
|
5270
|
+
|
|
5034
5271
|
class UpdatePipelineExecutionResponseTypeDef(TypedDict):
|
|
5035
5272
|
PipelineExecutionArn: str
|
|
5036
5273
|
ResponseMetadata: ResponseMetadataTypeDef
|
|
@@ -5112,6 +5349,11 @@ class CreateStudioLifecycleConfigRequestRequestTypeDef(TypedDict):
|
|
|
5112
5349
|
StudioLifecycleConfigAppType: StudioLifecycleConfigAppTypeType
|
|
5113
5350
|
Tags: NotRequired[Sequence[TagTypeDef]]
|
|
5114
5351
|
|
|
5352
|
+
class CreateTrainingPlanRequestRequestTypeDef(TypedDict):
|
|
5353
|
+
TrainingPlanName: str
|
|
5354
|
+
TrainingPlanOfferingId: str
|
|
5355
|
+
Tags: NotRequired[Sequence[TagTypeDef]]
|
|
5356
|
+
|
|
5115
5357
|
class ImportHubContentRequestRequestTypeDef(TypedDict):
|
|
5116
5358
|
HubContentName: str
|
|
5117
5359
|
HubContentType: HubContentTypeType
|
|
@@ -5432,6 +5674,11 @@ class ClusterNodeSummaryTypeDef(TypedDict):
|
|
|
5432
5674
|
class ClusterOrchestratorTypeDef(TypedDict):
|
|
5433
5675
|
Eks: ClusterOrchestratorEksConfigTypeDef
|
|
5434
5676
|
|
|
5677
|
+
class ListClusterSchedulerConfigsResponseTypeDef(TypedDict):
|
|
5678
|
+
ClusterSchedulerConfigSummaries: List[ClusterSchedulerConfigSummaryTypeDef]
|
|
5679
|
+
ResponseMetadata: ResponseMetadataTypeDef
|
|
5680
|
+
NextToken: NotRequired[str]
|
|
5681
|
+
|
|
5435
5682
|
class ListClustersResponseTypeDef(TypedDict):
|
|
5436
5683
|
NextToken: str
|
|
5437
5684
|
ClusterSummaries: List[ClusterSummaryTypeDef]
|
|
@@ -5511,6 +5758,16 @@ class ListCompilationJobsResponseTypeDef(TypedDict):
|
|
|
5511
5758
|
ResponseMetadata: ResponseMetadataTypeDef
|
|
5512
5759
|
NextToken: NotRequired[str]
|
|
5513
5760
|
|
|
5761
|
+
class ComputeQuotaConfigOutputTypeDef(TypedDict):
|
|
5762
|
+
ComputeQuotaResources: NotRequired[List[ComputeQuotaResourceConfigTypeDef]]
|
|
5763
|
+
ResourceSharingConfig: NotRequired[ResourceSharingConfigTypeDef]
|
|
5764
|
+
PreemptTeamTasks: NotRequired[PreemptTeamTasksType]
|
|
5765
|
+
|
|
5766
|
+
class ComputeQuotaConfigTypeDef(TypedDict):
|
|
5767
|
+
ComputeQuotaResources: NotRequired[Sequence[ComputeQuotaResourceConfigTypeDef]]
|
|
5768
|
+
ResourceSharingConfig: NotRequired[ResourceSharingConfigTypeDef]
|
|
5769
|
+
PreemptTeamTasks: NotRequired[PreemptTeamTasksType]
|
|
5770
|
+
|
|
5514
5771
|
ContainerConfigUnionTypeDef = Union[ContainerConfigTypeDef, ContainerConfigOutputTypeDef]
|
|
5515
5772
|
|
|
5516
5773
|
class ContextSummaryTypeDef(TypedDict):
|
|
@@ -5710,6 +5967,31 @@ class UpdateNotebookInstanceLifecycleConfigInputRequestTypeDef(TypedDict):
|
|
|
5710
5967
|
OnCreate: NotRequired[Sequence[NotebookInstanceLifecycleHookTypeDef]]
|
|
5711
5968
|
OnStart: NotRequired[Sequence[NotebookInstanceLifecycleHookTypeDef]]
|
|
5712
5969
|
|
|
5970
|
+
CreatePartnerAppRequestRequestTypeDef = TypedDict(
|
|
5971
|
+
"CreatePartnerAppRequestRequestTypeDef",
|
|
5972
|
+
{
|
|
5973
|
+
"Name": str,
|
|
5974
|
+
"Type": PartnerAppTypeType,
|
|
5975
|
+
"ExecutionRoleArn": str,
|
|
5976
|
+
"Tier": str,
|
|
5977
|
+
"AuthType": Literal["IAM"],
|
|
5978
|
+
"MaintenanceConfig": NotRequired[PartnerAppMaintenanceConfigTypeDef],
|
|
5979
|
+
"ApplicationConfig": NotRequired[PartnerAppConfigTypeDef],
|
|
5980
|
+
"EnableIamSessionBasedIdentity": NotRequired[bool],
|
|
5981
|
+
"ClientToken": NotRequired[str],
|
|
5982
|
+
"Tags": NotRequired[Sequence[TagTypeDef]],
|
|
5983
|
+
},
|
|
5984
|
+
)
|
|
5985
|
+
|
|
5986
|
+
class UpdatePartnerAppRequestRequestTypeDef(TypedDict):
|
|
5987
|
+
Arn: str
|
|
5988
|
+
MaintenanceConfig: NotRequired[PartnerAppMaintenanceConfigTypeDef]
|
|
5989
|
+
Tier: NotRequired[str]
|
|
5990
|
+
ApplicationConfig: NotRequired[PartnerAppConfigTypeDef]
|
|
5991
|
+
EnableIamSessionBasedIdentity: NotRequired[bool]
|
|
5992
|
+
ClientToken: NotRequired[str]
|
|
5993
|
+
Tags: NotRequired[Sequence[TagTypeDef]]
|
|
5994
|
+
|
|
5713
5995
|
class RetryPipelineExecutionRequestRequestTypeDef(TypedDict):
|
|
5714
5996
|
PipelineExecutionArn: str
|
|
5715
5997
|
ClientRequestToken: str
|
|
@@ -5820,6 +6102,17 @@ class ListClusterNodesRequestRequestTypeDef(TypedDict):
|
|
|
5820
6102
|
SortBy: NotRequired[ClusterSortByType]
|
|
5821
6103
|
SortOrder: NotRequired[SortOrderType]
|
|
5822
6104
|
|
|
6105
|
+
class ListClusterSchedulerConfigsRequestRequestTypeDef(TypedDict):
|
|
6106
|
+
CreatedAfter: NotRequired[TimestampTypeDef]
|
|
6107
|
+
CreatedBefore: NotRequired[TimestampTypeDef]
|
|
6108
|
+
NameContains: NotRequired[str]
|
|
6109
|
+
ClusterArn: NotRequired[str]
|
|
6110
|
+
Status: NotRequired[SchedulerResourceStatusType]
|
|
6111
|
+
SortBy: NotRequired[SortClusterSchedulerConfigByType]
|
|
6112
|
+
SortOrder: NotRequired[SortOrderType]
|
|
6113
|
+
NextToken: NotRequired[str]
|
|
6114
|
+
MaxResults: NotRequired[int]
|
|
6115
|
+
|
|
5823
6116
|
class ListClustersRequestRequestTypeDef(TypedDict):
|
|
5824
6117
|
CreationTimeAfter: NotRequired[TimestampTypeDef]
|
|
5825
6118
|
CreationTimeBefore: NotRequired[TimestampTypeDef]
|
|
@@ -5828,6 +6121,7 @@ class ListClustersRequestRequestTypeDef(TypedDict):
|
|
|
5828
6121
|
NextToken: NotRequired[str]
|
|
5829
6122
|
SortBy: NotRequired[ClusterSortByType]
|
|
5830
6123
|
SortOrder: NotRequired[SortOrderType]
|
|
6124
|
+
TrainingPlanArn: NotRequired[str]
|
|
5831
6125
|
|
|
5832
6126
|
class ListCodeRepositoriesInputRequestTypeDef(TypedDict):
|
|
5833
6127
|
CreationTimeAfter: NotRequired[TimestampTypeDef]
|
|
@@ -5852,6 +6146,17 @@ class ListCompilationJobsRequestRequestTypeDef(TypedDict):
|
|
|
5852
6146
|
SortBy: NotRequired[ListCompilationJobsSortByType]
|
|
5853
6147
|
SortOrder: NotRequired[SortOrderType]
|
|
5854
6148
|
|
|
6149
|
+
class ListComputeQuotasRequestRequestTypeDef(TypedDict):
|
|
6150
|
+
CreatedAfter: NotRequired[TimestampTypeDef]
|
|
6151
|
+
CreatedBefore: NotRequired[TimestampTypeDef]
|
|
6152
|
+
NameContains: NotRequired[str]
|
|
6153
|
+
Status: NotRequired[SchedulerResourceStatusType]
|
|
6154
|
+
ClusterArn: NotRequired[str]
|
|
6155
|
+
SortBy: NotRequired[SortQuotaByType]
|
|
6156
|
+
SortOrder: NotRequired[SortOrderType]
|
|
6157
|
+
NextToken: NotRequired[str]
|
|
6158
|
+
MaxResults: NotRequired[int]
|
|
6159
|
+
|
|
5855
6160
|
class ListContextsRequestRequestTypeDef(TypedDict):
|
|
5856
6161
|
SourceUri: NotRequired[str]
|
|
5857
6162
|
ContextType: NotRequired[str]
|
|
@@ -6371,6 +6676,7 @@ class ListTrainingJobsRequestRequestTypeDef(TypedDict):
|
|
|
6371
6676
|
SortBy: NotRequired[SortByType]
|
|
6372
6677
|
SortOrder: NotRequired[SortOrderType]
|
|
6373
6678
|
WarmPoolStatusEquals: NotRequired[WarmPoolResourceStatusType]
|
|
6679
|
+
TrainingPlanArnEquals: NotRequired[str]
|
|
6374
6680
|
|
|
6375
6681
|
class ListTransformJobsRequestRequestTypeDef(TypedDict):
|
|
6376
6682
|
CreationTimeAfter: NotRequired[TimestampTypeDef]
|
|
@@ -6414,6 +6720,14 @@ class QueryFiltersTypeDef(TypedDict):
|
|
|
6414
6720
|
ModifiedAfter: NotRequired[TimestampTypeDef]
|
|
6415
6721
|
Properties: NotRequired[Mapping[str, str]]
|
|
6416
6722
|
|
|
6723
|
+
class SearchTrainingPlanOfferingsRequestRequestTypeDef(TypedDict):
|
|
6724
|
+
InstanceType: ReservedCapacityInstanceTypeType
|
|
6725
|
+
InstanceCount: int
|
|
6726
|
+
TargetResources: Sequence[SageMakerResourceNameType]
|
|
6727
|
+
StartTimeAfter: NotRequired[TimestampTypeDef]
|
|
6728
|
+
EndTimeBefore: NotRequired[TimestampTypeDef]
|
|
6729
|
+
DurationHours: NotRequired[int]
|
|
6730
|
+
|
|
6417
6731
|
class CreateTrialComponentRequestRequestTypeDef(TypedDict):
|
|
6418
6732
|
TrialComponentName: str
|
|
6419
6733
|
DisplayName: NotRequired[str]
|
|
@@ -6455,9 +6769,11 @@ class UpdateWorkforceRequestRequestTypeDef(TypedDict):
|
|
|
6455
6769
|
|
|
6456
6770
|
class CustomFileSystemConfigTypeDef(TypedDict):
|
|
6457
6771
|
EFSFileSystemConfig: NotRequired[EFSFileSystemConfigTypeDef]
|
|
6772
|
+
FSxLustreFileSystemConfig: NotRequired[FSxLustreFileSystemConfigTypeDef]
|
|
6458
6773
|
|
|
6459
6774
|
class CustomFileSystemTypeDef(TypedDict):
|
|
6460
6775
|
EFSFileSystem: NotRequired[EFSFileSystemTypeDef]
|
|
6776
|
+
FSxLustreFileSystem: NotRequired[FSxLustreFileSystemTypeDef]
|
|
6461
6777
|
|
|
6462
6778
|
class ModelBiasBaselineConfigTypeDef(TypedDict):
|
|
6463
6779
|
BaseliningJobName: NotRequired[str]
|
|
@@ -6713,6 +7029,27 @@ class ListMonitoringExecutionsResponseTypeDef(TypedDict):
|
|
|
6713
7029
|
ResponseMetadata: ResponseMetadataTypeDef
|
|
6714
7030
|
NextToken: NotRequired[str]
|
|
6715
7031
|
|
|
7032
|
+
DescribePartnerAppResponseTypeDef = TypedDict(
|
|
7033
|
+
"DescribePartnerAppResponseTypeDef",
|
|
7034
|
+
{
|
|
7035
|
+
"Arn": str,
|
|
7036
|
+
"Name": str,
|
|
7037
|
+
"Type": PartnerAppTypeType,
|
|
7038
|
+
"Status": PartnerAppStatusType,
|
|
7039
|
+
"CreationTime": datetime,
|
|
7040
|
+
"ExecutionRoleArn": str,
|
|
7041
|
+
"BaseUrl": str,
|
|
7042
|
+
"MaintenanceConfig": PartnerAppMaintenanceConfigTypeDef,
|
|
7043
|
+
"Tier": str,
|
|
7044
|
+
"Version": str,
|
|
7045
|
+
"ApplicationConfig": PartnerAppConfigOutputTypeDef,
|
|
7046
|
+
"AuthType": Literal["IAM"],
|
|
7047
|
+
"EnableIamSessionBasedIdentity": bool,
|
|
7048
|
+
"Error": ErrorInfoTypeDef,
|
|
7049
|
+
"ResponseMetadata": ResponseMetadataTypeDef,
|
|
7050
|
+
},
|
|
7051
|
+
)
|
|
7052
|
+
|
|
6716
7053
|
class DescribeSubscribedWorkteamResponseTypeDef(TypedDict):
|
|
6717
7054
|
SubscribedWorkteam: SubscribedWorkteamTypeDef
|
|
6718
7055
|
ResponseMetadata: ResponseMetadataTypeDef
|
|
@@ -6731,6 +7068,42 @@ class TrainingJobSummaryTypeDef(TypedDict):
|
|
|
6731
7068
|
LastModifiedTime: NotRequired[datetime]
|
|
6732
7069
|
SecondaryStatus: NotRequired[SecondaryStatusType]
|
|
6733
7070
|
WarmPoolStatus: NotRequired[WarmPoolStatusTypeDef]
|
|
7071
|
+
TrainingPlanArn: NotRequired[str]
|
|
7072
|
+
|
|
7073
|
+
class DescribeTrainingPlanResponseTypeDef(TypedDict):
|
|
7074
|
+
TrainingPlanArn: str
|
|
7075
|
+
TrainingPlanName: str
|
|
7076
|
+
Status: TrainingPlanStatusType
|
|
7077
|
+
StatusMessage: str
|
|
7078
|
+
DurationHours: int
|
|
7079
|
+
DurationMinutes: int
|
|
7080
|
+
StartTime: datetime
|
|
7081
|
+
EndTime: datetime
|
|
7082
|
+
UpfrontFee: str
|
|
7083
|
+
CurrencyCode: str
|
|
7084
|
+
TotalInstanceCount: int
|
|
7085
|
+
AvailableInstanceCount: int
|
|
7086
|
+
InUseInstanceCount: int
|
|
7087
|
+
TargetResources: List[SageMakerResourceNameType]
|
|
7088
|
+
ReservedCapacitySummaries: List[ReservedCapacitySummaryTypeDef]
|
|
7089
|
+
ResponseMetadata: ResponseMetadataTypeDef
|
|
7090
|
+
|
|
7091
|
+
class TrainingPlanSummaryTypeDef(TypedDict):
|
|
7092
|
+
TrainingPlanArn: str
|
|
7093
|
+
TrainingPlanName: str
|
|
7094
|
+
Status: TrainingPlanStatusType
|
|
7095
|
+
StatusMessage: NotRequired[str]
|
|
7096
|
+
DurationHours: NotRequired[int]
|
|
7097
|
+
DurationMinutes: NotRequired[int]
|
|
7098
|
+
StartTime: NotRequired[datetime]
|
|
7099
|
+
EndTime: NotRequired[datetime]
|
|
7100
|
+
UpfrontFee: NotRequired[str]
|
|
7101
|
+
CurrencyCode: NotRequired[str]
|
|
7102
|
+
TotalInstanceCount: NotRequired[int]
|
|
7103
|
+
AvailableInstanceCount: NotRequired[int]
|
|
7104
|
+
InUseInstanceCount: NotRequired[int]
|
|
7105
|
+
TargetResources: NotRequired[List[SageMakerResourceNameType]]
|
|
7106
|
+
ReservedCapacitySummaries: NotRequired[List[ReservedCapacitySummaryTypeDef]]
|
|
6734
7107
|
|
|
6735
7108
|
class TrialSummaryTypeDef(TypedDict):
|
|
6736
7109
|
TrialArn: NotRequired[str]
|
|
@@ -7013,6 +7386,7 @@ class ResourceConfigOutputTypeDef(TypedDict):
|
|
|
7013
7386
|
VolumeKmsKeyId: NotRequired[str]
|
|
7014
7387
|
KeepAlivePeriodInSeconds: NotRequired[int]
|
|
7015
7388
|
InstanceGroups: NotRequired[List[InstanceGroupTypeDef]]
|
|
7389
|
+
TrainingPlanArn: NotRequired[str]
|
|
7016
7390
|
|
|
7017
7391
|
class ResourceConfigTypeDef(TypedDict):
|
|
7018
7392
|
VolumeSizeInGB: int
|
|
@@ -7021,6 +7395,7 @@ class ResourceConfigTypeDef(TypedDict):
|
|
|
7021
7395
|
VolumeKmsKeyId: NotRequired[str]
|
|
7022
7396
|
KeepAlivePeriodInSeconds: NotRequired[int]
|
|
7023
7397
|
InstanceGroups: NotRequired[Sequence[InstanceGroupTypeDef]]
|
|
7398
|
+
TrainingPlanArn: NotRequired[str]
|
|
7024
7399
|
|
|
7025
7400
|
class ParameterRangeOutputTypeDef(TypedDict):
|
|
7026
7401
|
IntegerParameterRangeSpecification: NotRequired[IntegerParameterRangeSpecificationTypeDef]
|
|
@@ -7154,12 +7529,23 @@ class ListClusterNodesRequestListClusterNodesPaginateTypeDef(TypedDict):
|
|
|
7154
7529
|
SortOrder: NotRequired[SortOrderType]
|
|
7155
7530
|
PaginationConfig: NotRequired[PaginatorConfigTypeDef]
|
|
7156
7531
|
|
|
7532
|
+
class ListClusterSchedulerConfigsRequestListClusterSchedulerConfigsPaginateTypeDef(TypedDict):
|
|
7533
|
+
CreatedAfter: NotRequired[TimestampTypeDef]
|
|
7534
|
+
CreatedBefore: NotRequired[TimestampTypeDef]
|
|
7535
|
+
NameContains: NotRequired[str]
|
|
7536
|
+
ClusterArn: NotRequired[str]
|
|
7537
|
+
Status: NotRequired[SchedulerResourceStatusType]
|
|
7538
|
+
SortBy: NotRequired[SortClusterSchedulerConfigByType]
|
|
7539
|
+
SortOrder: NotRequired[SortOrderType]
|
|
7540
|
+
PaginationConfig: NotRequired[PaginatorConfigTypeDef]
|
|
7541
|
+
|
|
7157
7542
|
class ListClustersRequestListClustersPaginateTypeDef(TypedDict):
|
|
7158
7543
|
CreationTimeAfter: NotRequired[TimestampTypeDef]
|
|
7159
7544
|
CreationTimeBefore: NotRequired[TimestampTypeDef]
|
|
7160
7545
|
NameContains: NotRequired[str]
|
|
7161
7546
|
SortBy: NotRequired[ClusterSortByType]
|
|
7162
7547
|
SortOrder: NotRequired[SortOrderType]
|
|
7548
|
+
TrainingPlanArn: NotRequired[str]
|
|
7163
7549
|
PaginationConfig: NotRequired[PaginatorConfigTypeDef]
|
|
7164
7550
|
|
|
7165
7551
|
class ListCodeRepositoriesInputListCodeRepositoriesPaginateTypeDef(TypedDict):
|
|
@@ -7183,6 +7569,16 @@ class ListCompilationJobsRequestListCompilationJobsPaginateTypeDef(TypedDict):
|
|
|
7183
7569
|
SortOrder: NotRequired[SortOrderType]
|
|
7184
7570
|
PaginationConfig: NotRequired[PaginatorConfigTypeDef]
|
|
7185
7571
|
|
|
7572
|
+
class ListComputeQuotasRequestListComputeQuotasPaginateTypeDef(TypedDict):
|
|
7573
|
+
CreatedAfter: NotRequired[TimestampTypeDef]
|
|
7574
|
+
CreatedBefore: NotRequired[TimestampTypeDef]
|
|
7575
|
+
NameContains: NotRequired[str]
|
|
7576
|
+
Status: NotRequired[SchedulerResourceStatusType]
|
|
7577
|
+
ClusterArn: NotRequired[str]
|
|
7578
|
+
SortBy: NotRequired[SortQuotaByType]
|
|
7579
|
+
SortOrder: NotRequired[SortOrderType]
|
|
7580
|
+
PaginationConfig: NotRequired[PaginatorConfigTypeDef]
|
|
7581
|
+
|
|
7186
7582
|
class ListContextsRequestListContextsPaginateTypeDef(TypedDict):
|
|
7187
7583
|
SourceUri: NotRequired[str]
|
|
7188
7584
|
ContextType: NotRequired[str]
|
|
@@ -7578,6 +7974,9 @@ class ListOptimizationJobsRequestListOptimizationJobsPaginateTypeDef(TypedDict):
|
|
|
7578
7974
|
SortOrder: NotRequired[SortOrderType]
|
|
7579
7975
|
PaginationConfig: NotRequired[PaginatorConfigTypeDef]
|
|
7580
7976
|
|
|
7977
|
+
class ListPartnerAppsRequestListPartnerAppsPaginateTypeDef(TypedDict):
|
|
7978
|
+
PaginationConfig: NotRequired[PaginatorConfigTypeDef]
|
|
7979
|
+
|
|
7581
7980
|
class ListPipelineExecutionStepsRequestListPipelineExecutionStepsPaginateTypeDef(TypedDict):
|
|
7582
7981
|
PipelineExecutionArn: NotRequired[str]
|
|
7583
7982
|
SortOrder: NotRequired[SortOrderType]
|
|
@@ -7675,6 +8074,7 @@ class ListTrainingJobsRequestListTrainingJobsPaginateTypeDef(TypedDict):
|
|
|
7675
8074
|
SortBy: NotRequired[SortByType]
|
|
7676
8075
|
SortOrder: NotRequired[SortOrderType]
|
|
7677
8076
|
WarmPoolStatusEquals: NotRequired[WarmPoolResourceStatusType]
|
|
8077
|
+
TrainingPlanArnEquals: NotRequired[str]
|
|
7678
8078
|
PaginationConfig: NotRequired[PaginatorConfigTypeDef]
|
|
7679
8079
|
|
|
7680
8080
|
class ListTransformJobsRequestListTransformJobsPaginateTypeDef(TypedDict):
|
|
@@ -7811,6 +8211,11 @@ class ListOptimizationJobsResponseTypeDef(TypedDict):
|
|
|
7811
8211
|
ResponseMetadata: ResponseMetadataTypeDef
|
|
7812
8212
|
NextToken: NotRequired[str]
|
|
7813
8213
|
|
|
8214
|
+
class ListPartnerAppsResponseTypeDef(TypedDict):
|
|
8215
|
+
Summaries: List[PartnerAppSummaryTypeDef]
|
|
8216
|
+
ResponseMetadata: ResponseMetadataTypeDef
|
|
8217
|
+
NextToken: NotRequired[str]
|
|
8218
|
+
|
|
7814
8219
|
class ListPipelineExecutionsResponseTypeDef(TypedDict):
|
|
7815
8220
|
PipelineExecutionSummaries: List[PipelineExecutionSummaryTypeDef]
|
|
7816
8221
|
ResponseMetadata: ResponseMetadataTypeDef
|
|
@@ -7846,6 +8251,23 @@ class ListStudioLifecycleConfigsResponseTypeDef(TypedDict):
|
|
|
7846
8251
|
ResponseMetadata: ResponseMetadataTypeDef
|
|
7847
8252
|
NextToken: NotRequired[str]
|
|
7848
8253
|
|
|
8254
|
+
class ListTrainingPlansRequestListTrainingPlansPaginateTypeDef(TypedDict):
|
|
8255
|
+
StartTimeAfter: NotRequired[TimestampTypeDef]
|
|
8256
|
+
StartTimeBefore: NotRequired[TimestampTypeDef]
|
|
8257
|
+
SortBy: NotRequired[TrainingPlanSortByType]
|
|
8258
|
+
SortOrder: NotRequired[TrainingPlanSortOrderType]
|
|
8259
|
+
Filters: NotRequired[Sequence[TrainingPlanFilterTypeDef]]
|
|
8260
|
+
PaginationConfig: NotRequired[PaginatorConfigTypeDef]
|
|
8261
|
+
|
|
8262
|
+
class ListTrainingPlansRequestRequestTypeDef(TypedDict):
|
|
8263
|
+
NextToken: NotRequired[str]
|
|
8264
|
+
MaxResults: NotRequired[int]
|
|
8265
|
+
StartTimeAfter: NotRequired[TimestampTypeDef]
|
|
8266
|
+
StartTimeBefore: NotRequired[TimestampTypeDef]
|
|
8267
|
+
SortBy: NotRequired[TrainingPlanSortByType]
|
|
8268
|
+
SortOrder: NotRequired[TrainingPlanSortOrderType]
|
|
8269
|
+
Filters: NotRequired[Sequence[TrainingPlanFilterTypeDef]]
|
|
8270
|
+
|
|
7849
8271
|
class ListTransformJobsResponseTypeDef(TypedDict):
|
|
7850
8272
|
TransformJobSummaries: List[TransformJobSummaryTypeDef]
|
|
7851
8273
|
ResponseMetadata: ResponseMetadataTypeDef
|
|
@@ -8002,6 +8424,14 @@ class ProductionVariantSummaryTypeDef(TypedDict):
|
|
|
8002
8424
|
ManagedInstanceScaling: NotRequired[ProductionVariantManagedInstanceScalingTypeDef]
|
|
8003
8425
|
RoutingConfig: NotRequired[ProductionVariantRoutingConfigTypeDef]
|
|
8004
8426
|
|
|
8427
|
+
class SchedulerConfigOutputTypeDef(TypedDict):
|
|
8428
|
+
PriorityClasses: NotRequired[List[PriorityClassTypeDef]]
|
|
8429
|
+
FairShare: NotRequired[FairShareType]
|
|
8430
|
+
|
|
8431
|
+
class SchedulerConfigTypeDef(TypedDict):
|
|
8432
|
+
PriorityClasses: NotRequired[Sequence[PriorityClassTypeDef]]
|
|
8433
|
+
FairShare: NotRequired[FairShareType]
|
|
8434
|
+
|
|
8005
8435
|
class ProcessingResourcesTypeDef(TypedDict):
|
|
8006
8436
|
ClusterConfig: ProcessingClusterConfigTypeDef
|
|
8007
8437
|
|
|
@@ -8094,6 +8524,17 @@ class RenderUiTemplateResponseTypeDef(TypedDict):
|
|
|
8094
8524
|
Errors: List[RenderingErrorTypeDef]
|
|
8095
8525
|
ResponseMetadata: ResponseMetadataTypeDef
|
|
8096
8526
|
|
|
8527
|
+
class TrainingPlanOfferingTypeDef(TypedDict):
|
|
8528
|
+
TrainingPlanOfferingId: str
|
|
8529
|
+
TargetResources: List[SageMakerResourceNameType]
|
|
8530
|
+
RequestedStartTimeAfter: NotRequired[datetime]
|
|
8531
|
+
RequestedEndTimeBefore: NotRequired[datetime]
|
|
8532
|
+
DurationHours: NotRequired[int]
|
|
8533
|
+
DurationMinutes: NotRequired[int]
|
|
8534
|
+
UpfrontFee: NotRequired[str]
|
|
8535
|
+
CurrencyCode: NotRequired[str]
|
|
8536
|
+
ReservedCapacityOfferings: NotRequired[List[ReservedCapacityOfferingTypeDef]]
|
|
8537
|
+
|
|
8097
8538
|
class UpdateTrainingJobRequestRequestTypeDef(TypedDict):
|
|
8098
8539
|
TrainingJobName: str
|
|
8099
8540
|
ProfilerConfig: NotRequired[ProfilerConfigForUpdateTypeDef]
|
|
@@ -8398,6 +8839,9 @@ class ClusterInstanceGroupDetailsTypeDef(TypedDict):
|
|
|
8398
8839
|
ThreadsPerCore: NotRequired[int]
|
|
8399
8840
|
InstanceStorageConfigs: NotRequired[List[ClusterInstanceStorageConfigTypeDef]]
|
|
8400
8841
|
OnStartDeepHealthChecks: NotRequired[List[DeepHealthCheckTypeType]]
|
|
8842
|
+
Status: NotRequired[InstanceGroupStatusType]
|
|
8843
|
+
TrainingPlanArn: NotRequired[str]
|
|
8844
|
+
TrainingPlanStatus: NotRequired[str]
|
|
8401
8845
|
OverrideVpcConfig: NotRequired[VpcConfigOutputTypeDef]
|
|
8402
8846
|
|
|
8403
8847
|
class ClusterNodeDetailsTypeDef(TypedDict):
|
|
@@ -8447,6 +8891,36 @@ class DebugHookConfigTypeDef(TypedDict):
|
|
|
8447
8891
|
HookParameters: NotRequired[Mapping[str, str]]
|
|
8448
8892
|
CollectionConfigurations: NotRequired[Sequence[CollectionConfigurationUnionTypeDef]]
|
|
8449
8893
|
|
|
8894
|
+
class ComputeQuotaSummaryTypeDef(TypedDict):
|
|
8895
|
+
ComputeQuotaArn: str
|
|
8896
|
+
ComputeQuotaId: str
|
|
8897
|
+
Name: str
|
|
8898
|
+
Status: SchedulerResourceStatusType
|
|
8899
|
+
ComputeQuotaTarget: ComputeQuotaTargetTypeDef
|
|
8900
|
+
CreationTime: datetime
|
|
8901
|
+
ComputeQuotaVersion: NotRequired[int]
|
|
8902
|
+
ClusterArn: NotRequired[str]
|
|
8903
|
+
ComputeQuotaConfig: NotRequired[ComputeQuotaConfigOutputTypeDef]
|
|
8904
|
+
ActivationState: NotRequired[ActivationStateType]
|
|
8905
|
+
LastModifiedTime: NotRequired[datetime]
|
|
8906
|
+
|
|
8907
|
+
class CreateComputeQuotaRequestRequestTypeDef(TypedDict):
|
|
8908
|
+
Name: str
|
|
8909
|
+
ClusterArn: str
|
|
8910
|
+
ComputeQuotaConfig: ComputeQuotaConfigTypeDef
|
|
8911
|
+
ComputeQuotaTarget: ComputeQuotaTargetTypeDef
|
|
8912
|
+
Description: NotRequired[str]
|
|
8913
|
+
ActivationState: NotRequired[ActivationStateType]
|
|
8914
|
+
Tags: NotRequired[Sequence[TagTypeDef]]
|
|
8915
|
+
|
|
8916
|
+
class UpdateComputeQuotaRequestRequestTypeDef(TypedDict):
|
|
8917
|
+
ComputeQuotaId: str
|
|
8918
|
+
TargetVersion: int
|
|
8919
|
+
ComputeQuotaConfig: NotRequired[ComputeQuotaConfigTypeDef]
|
|
8920
|
+
ComputeQuotaTarget: NotRequired[ComputeQuotaTargetTypeDef]
|
|
8921
|
+
ActivationState: NotRequired[ActivationStateType]
|
|
8922
|
+
Description: NotRequired[str]
|
|
8923
|
+
|
|
8450
8924
|
class CodeEditorAppImageConfigTypeDef(TypedDict):
|
|
8451
8925
|
FileSystemConfig: NotRequired[FileSystemConfigTypeDef]
|
|
8452
8926
|
ContainerConfig: NotRequired[ContainerConfigUnionTypeDef]
|
|
@@ -8474,6 +8948,7 @@ class ClusterInstanceGroupSpecificationTypeDef(TypedDict):
|
|
|
8474
8948
|
ThreadsPerCore: NotRequired[int]
|
|
8475
8949
|
InstanceStorageConfigs: NotRequired[Sequence[ClusterInstanceStorageConfigTypeDef]]
|
|
8476
8950
|
OnStartDeepHealthChecks: NotRequired[Sequence[DeepHealthCheckTypeType]]
|
|
8951
|
+
TrainingPlanArn: NotRequired[str]
|
|
8477
8952
|
OverrideVpcConfig: NotRequired[VpcConfigUnionTypeDef]
|
|
8478
8953
|
|
|
8479
8954
|
class LabelingJobResourceConfigTypeDef(TypedDict):
|
|
@@ -8565,6 +9040,11 @@ class ListTrainingJobsResponseTypeDef(TypedDict):
|
|
|
8565
9040
|
ResponseMetadata: ResponseMetadataTypeDef
|
|
8566
9041
|
NextToken: NotRequired[str]
|
|
8567
9042
|
|
|
9043
|
+
class ListTrainingPlansResponseTypeDef(TypedDict):
|
|
9044
|
+
TrainingPlanSummaries: List[TrainingPlanSummaryTypeDef]
|
|
9045
|
+
ResponseMetadata: ResponseMetadataTypeDef
|
|
9046
|
+
NextToken: NotRequired[str]
|
|
9047
|
+
|
|
8568
9048
|
class ListTrialsResponseTypeDef(TypedDict):
|
|
8569
9049
|
TrialSummaries: List[TrialSummaryTypeDef]
|
|
8570
9050
|
ResponseMetadata: ResponseMetadataTypeDef
|
|
@@ -8709,6 +9189,24 @@ class DescribeArtifactResponseTypeDef(TypedDict):
|
|
|
8709
9189
|
LineageGroupArn: str
|
|
8710
9190
|
ResponseMetadata: ResponseMetadataTypeDef
|
|
8711
9191
|
|
|
9192
|
+
class DescribeComputeQuotaResponseTypeDef(TypedDict):
|
|
9193
|
+
ComputeQuotaArn: str
|
|
9194
|
+
ComputeQuotaId: str
|
|
9195
|
+
Name: str
|
|
9196
|
+
Description: str
|
|
9197
|
+
ComputeQuotaVersion: int
|
|
9198
|
+
Status: SchedulerResourceStatusType
|
|
9199
|
+
FailureReason: str
|
|
9200
|
+
ClusterArn: str
|
|
9201
|
+
ComputeQuotaConfig: ComputeQuotaConfigOutputTypeDef
|
|
9202
|
+
ComputeQuotaTarget: ComputeQuotaTargetTypeDef
|
|
9203
|
+
ActivationState: ActivationStateType
|
|
9204
|
+
CreationTime: datetime
|
|
9205
|
+
CreatedBy: UserContextTypeDef
|
|
9206
|
+
LastModifiedTime: datetime
|
|
9207
|
+
LastModifiedBy: UserContextTypeDef
|
|
9208
|
+
ResponseMetadata: ResponseMetadataTypeDef
|
|
9209
|
+
|
|
8712
9210
|
class DescribeContextResponseTypeDef(TypedDict):
|
|
8713
9211
|
ContextName: str
|
|
8714
9212
|
ContextArn: str
|
|
@@ -9117,6 +9615,35 @@ class PendingDeploymentSummaryTypeDef(TypedDict):
|
|
|
9117
9615
|
StartTime: NotRequired[datetime]
|
|
9118
9616
|
ShadowProductionVariants: NotRequired[List[PendingProductionVariantSummaryTypeDef]]
|
|
9119
9617
|
|
|
9618
|
+
class DescribeClusterSchedulerConfigResponseTypeDef(TypedDict):
|
|
9619
|
+
ClusterSchedulerConfigArn: str
|
|
9620
|
+
ClusterSchedulerConfigId: str
|
|
9621
|
+
Name: str
|
|
9622
|
+
ClusterSchedulerConfigVersion: int
|
|
9623
|
+
Status: SchedulerResourceStatusType
|
|
9624
|
+
FailureReason: str
|
|
9625
|
+
ClusterArn: str
|
|
9626
|
+
SchedulerConfig: SchedulerConfigOutputTypeDef
|
|
9627
|
+
Description: str
|
|
9628
|
+
CreationTime: datetime
|
|
9629
|
+
CreatedBy: UserContextTypeDef
|
|
9630
|
+
LastModifiedTime: datetime
|
|
9631
|
+
LastModifiedBy: UserContextTypeDef
|
|
9632
|
+
ResponseMetadata: ResponseMetadataTypeDef
|
|
9633
|
+
|
|
9634
|
+
class CreateClusterSchedulerConfigRequestRequestTypeDef(TypedDict):
|
|
9635
|
+
Name: str
|
|
9636
|
+
ClusterArn: str
|
|
9637
|
+
SchedulerConfig: SchedulerConfigTypeDef
|
|
9638
|
+
Description: NotRequired[str]
|
|
9639
|
+
Tags: NotRequired[Sequence[TagTypeDef]]
|
|
9640
|
+
|
|
9641
|
+
class UpdateClusterSchedulerConfigRequestRequestTypeDef(TypedDict):
|
|
9642
|
+
ClusterSchedulerConfigId: str
|
|
9643
|
+
TargetVersion: int
|
|
9644
|
+
SchedulerConfig: NotRequired[SchedulerConfigTypeDef]
|
|
9645
|
+
Description: NotRequired[str]
|
|
9646
|
+
|
|
9120
9647
|
class ProcessingOutputConfigOutputTypeDef(TypedDict):
|
|
9121
9648
|
Outputs: List[ProcessingOutputTypeDef]
|
|
9122
9649
|
KmsKeyId: NotRequired[str]
|
|
@@ -9235,6 +9762,10 @@ class RecommendationJobContainerConfigTypeDef(TypedDict):
|
|
|
9235
9762
|
DataInputConfig: NotRequired[str]
|
|
9236
9763
|
SupportedResponseMIMETypes: NotRequired[Sequence[str]]
|
|
9237
9764
|
|
|
9765
|
+
class SearchTrainingPlanOfferingsResponseTypeDef(TypedDict):
|
|
9766
|
+
TrainingPlanOfferings: List[TrainingPlanOfferingTypeDef]
|
|
9767
|
+
ResponseMetadata: ResponseMetadataTypeDef
|
|
9768
|
+
|
|
9238
9769
|
class DataSourceTypeDef(TypedDict):
|
|
9239
9770
|
S3DataSource: NotRequired[S3DataSourceUnionTypeDef]
|
|
9240
9771
|
FileSystemDataSource: NotRequired[FileSystemDataSourceTypeDef]
|
|
@@ -9542,6 +10073,11 @@ class UpdateFeatureGroupRequestRequestTypeDef(TypedDict):
|
|
|
9542
10073
|
OnlineStoreConfig: NotRequired[OnlineStoreConfigUpdateTypeDef]
|
|
9543
10074
|
ThroughputConfig: NotRequired[ThroughputConfigUpdateTypeDef]
|
|
9544
10075
|
|
|
10076
|
+
class ListComputeQuotasResponseTypeDef(TypedDict):
|
|
10077
|
+
ComputeQuotaSummaries: List[ComputeQuotaSummaryTypeDef]
|
|
10078
|
+
ResponseMetadata: ResponseMetadataTypeDef
|
|
10079
|
+
NextToken: NotRequired[str]
|
|
10080
|
+
|
|
9545
10081
|
class CreateAppImageConfigRequestRequestTypeDef(TypedDict):
|
|
9546
10082
|
AppImageConfigName: str
|
|
9547
10083
|
Tags: NotRequired[Sequence[TagTypeDef]]
|